Python多线程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python多线程相关的知识,希望对你有一定的参考价值。
import threading import time class myThread (threading.Thread): #继承父类threading.Thread def __init__(self, threadID, name): threading.Thread.__init__(self) self.name = name def run(self): #把要执行的代码写到run函数里面 线程在创建后会直接运行run函数 while 1: print("Starting " + self.name) time.sleep(1) # 创建新线程 thread1 = myThread(1, "this is thread1") thread2 = myThread(2, "this is thread2") thread3 = myThread(3, "this is thread3") # 开启线程 thread1.start() thread2.start() thread3.start()
以上是关于Python多线程的主要内容,如果未能解决你的问题,请参考以下文章