发布网友 发布时间:2022-04-23 08:32
共1个回答
热心网友 时间:2022-04-18 09:41
Python用sleep停止一个线程的运行,而不影响主线程的运行,案例代码如下:
from threading import *import time class MyThread(Thread): def run (self): self.ifdo = True; while self.ifdo: print 'I am running...' time.sleep(2) def stop (self): print 'I am stopping it...' self.ifdo = False; tr = MyThread()tr.setDaemon(True)tr.start()print 'I will stop it...'time.sleep(5)tr.stop()tr.join()