python中多线程

Posted JaydenLD@Clara

tags:

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

import threading
import time
from datetime import datetime as dt


def say_hello(word):
    time.sleep(1)
    print(word)


pool = []
now = dt.now()
for x in range(10):
    t = threading.Thread(target=say_hello, args=(x,))
    t.start()
    pool.append(t)

for t in pool:
    t.join()
end = dt.now()
print(\'总时间:\', (end - now).total_seconds())

 

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

python中多线程编程实验目的

python中多线程

python中多线程,多进程,队列笔记

理解Python中多线程

python 非常简单的接口,用于python中多线程执行函数。

python中多进程/多线程简单介绍