python多线程怎样执行函数

 我来答
红楼解人
2016-12-26 · TA获得超过139个赞
知道小有建树答主
回答量:277
采纳率:0%
帮助的人:55万
展开全部
  1. 将你需要多线程并发执行的函数放入list中

    import threading

    threads = []

    t1 = threading.Thread(target=函数名,args=参数)
    threads.append(t1)

  2. 启动多线程

    if __name__ == '__main__':
            for t in threads:
                t.setDaemon(True)
                t.start()
    t.join()

  3. 更多详细操作help(threading)

  4. #coding=utf-8
    import threading
    from time import ctime,sleep

    # 要启动的函数
    def music(func):
        for i in range(2):
            print "I was listening to %s. %s" %(func,ctime())
            sleep(1)
    # 要启动的函数
    def move(func):
        for i in range(2):
            print "I was at the %s! %s" %(func,ctime())
            sleep(5)

    threads = []
    t1 = threading.Thread(target=music,args=(u'爱情买卖',))
    threads.append(t1)
    t2 = threading.Thread(target=move,args=(u'阿凡达',))
    threads.append(t2)
    # 函数加入线程列表
    if __name__ == '__main__':
        for t in threads:
            t.setDaemon(True)
            t.start()
    t.join() #子线程完成运行之前,这个子线程的父线程将一直被阻塞,不会退出
        print "all over %s" %ctime()
六锶尽念飘1e
2016-08-30 · TA获得超过1693个赞
知道大有可为答主
回答量:2034
采纳率:82%
帮助的人:1522万
展开全部
正常执行 但是线程运行状态不受函数的控制
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式