标签:round ini %s main pre 创建线程 运行 __init__ class
能够让CPU运行起来的就是线程!
import threading
import time
class MyThread(threading.Thread):
def __init__(self, num):
threading.Thread.__init__(self)
self.num = num
def run(self): # 定义每个线程要执行的函数
print("running on number %s" % self.num)
time.sleep(3)
if __name__ == "__main__":
t1 = MyThread(1) # 子线程1
t2 = MyThread(2) # 子线程2
t1.start() # 执行
t2.start() # 执行
标签:round ini %s main pre 创建线程 运行 __init__ class
原文地址:https://www.cnblogs.com/uncle-kay/p/9608778.html