python多线程中的threading怎么用

这篇文章主要介绍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怎么用的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注行业资讯频道!