扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
import threading
import time
def worker():
count = 0
while True:
if count > 5:
break
time.sleep(1)
count += 1
print('worker running and threading_name={}'.format(
threading.current_thread().name))
class MyThread(threading.Thread):
def start(self):
print('start-------')
super().start()
def run(self):
print('run------')
super().run()
t = MyThread(name='worker',target=worker)
# t.start()
t.run()
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流