threading模块开启多线程

Posted screte

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了threading模块开启多线程相关的知识,希望对你有一定的参考价值。

 1 import threading
 2 from time import ctime,sleep
 3 loops = [4,2]
 4 def loop(nloop,nsec):
 5     print(start loop,nloop,at:,ctime())
 6     sleep(nsec)
 7     print(loop,nloop,end at:,ctime())
 8 def main():
 9     print(starting at:,ctime())
10     threads = []
11     nloops = range(len(loops))
12 
13     for i in nloops:
14         t = threading.Thread(target=loop,args=(i,loops[i]))
15         threads.append(t)           #进程准备
16     for i in nloops:        
17         threads[i].start()          #进程开始
18     for i in nloops:               #等待进程结束
19         threads[i].join()           #关闭进程
20     print(all done at ,ctime())
21 
22 if __name__ == __main__:
23     main()

 

以上是关于threading模块开启多线程的主要内容,如果未能解决你的问题,请参考以下文章

threading模块开启多线程

多线程代码讲解

多线程,代码示例

Python3 多线程编程(threadthreading模块)

多线程模块:threading

python并发编程:多线程-开启线程的两种方式