cook book:12:并发编程
作者:互联网
1:启动与停止线程 threading模块
# threading 库可以在单独的线程中执行任何的在 Python 中可以调用的对象。 # 可以创建一个 Thread 对象并将你要执行的对象以 target 参数的形式提供给该对象 # 要在独立线程中执行的代码 import time from threading import Thread def countdown(n): while n > 0: print('T-minus', n) n -= 1 time.sleep(5) # 创建并启动一个线程 t = Thread(target=countdown, args=(10,)) t.start() # target 参数传递需要执行的对象,args参数传递需要执行对象的参数
标签:12,target,Thread,对象,threading,book,线程,cook,执行 来源: https://www.cnblogs.com/yuanwt93/p/15471379.html