健壮香氛

文章
4
资源
1
加入时间
2年10月17天

多任务编程(一)多任务编程(一)

多任务编程(一)一、threading模块1、如何使用threading模块创建子线程(1)创建子线程之1:import threadingimport timedef hello(): print("hello world!") time.sleep(5)# 主线程def main(): for i in range(0, 1): t1...