这篇文章主要介绍python多线程中的threading怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

创新互联专业为企业提供朗县网站建设、朗县做网站、朗县网站设计、朗县网站制作等企业网站建设、网页设计与制作、朗县企业网站模板建站服务,十载朗县做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
threading模块的主要应用:
多线程启动
# 多线程启动
import os
import time
from threading import Thread
def func():
time.sleep(1)
print('hello 线程', os.getpid())
t = Thread(target=func)
t.start()
print(os.getpid())
# 结果
# 6360
# hello 线程 6360同步开启多线程
# 同步开启多线程
import os
import time
from threading import Thread
def func():
time.sleep(1)
print('hello 线程', os.getpid())
thread_l = []
for i in range(10):
t = Thread(target=func)
t.start()
thread_l.append(t)
for j in thread_l:
j.join()
print(os.getpid())以上是python多线程中的threading怎么用的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!