摘要: ## 1. 多线程的基本使用 ```python import threading import time def run(num): print('Num: %s'% num) time.sleep(3) if num == 4: print('Thread is finished.') # 对函 阅读全文
posted @ 2019-12-01 14:25 wztshine 阅读(606) 评论(0) 推荐(0) 编辑