2018年7月9日
摘要: 1.守护线程 import time from threading import Thread def func1(): while True: print(123) time.sleep(1) def func2(): print(456) time.sleep(5) t1 = Thread(ta 阅读全文
posted @ 2018-07-09 18:26 快叫洪哥 阅读(146) 评论(0) 推荐(0) 编辑