gpt4 book ai didi

带定时器的 Python 线程

转载 作者:太空宇宙 更新时间:2023-11-03 23:49:07 25 4
gpt4 key购买 nike

我希望 Python 中的 3 个线程运行 n 秒。我想同时启动它们并同时完成它们(在几毫秒内)。我该怎么做?

threading.Timer 只有在前一个完成后才开始。

最佳答案

import threading 
import time

class A(threading.Thread):
def run(self):
print "here", time.time()
time.sleep(10)
print "there", time.time()


if __name__=="__main__":
for i in range(3):
a = A()
a.start()

打印:

here 1279553593.49
here 1279553593.49
here 1279553593.49
there 1279553603.5
there 1279553603.5
there 1279553603.5

关于带定时器的 Python 线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3282469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com