摘要: 线程的基本使用: import threading # ###################### 1.线程的基本使用 def func(arg): print(arg) t = threading.Thread(target=func,args=(11,)) t.start() print(12 阅读全文
posted @ 2018-09-13 16:33 背锅文 阅读(132) 评论(0) 推荐(0)