这篇文章主要介绍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怎么用的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!
新闻名称:python多线程中的threading怎么用
分享链接:https://www.cdcxhl.com/article48/jcgjhp.html
成都网站建设公司_创新互联,为您提供电子商务、自适应网站、网站设计、做网站、微信公众号、全网营销推广
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联