摘要: 线程 线程是操作系统调度的最小单位 threading模块 线程的调用方式: import threading import time '''直接调用''' def hello(name): print("Hello %s"%name) time.sleep(3) if __name__ == "_ 阅读全文
posted @ 2020-03-22 23:07 知否- 阅读(180) 评论(0) 推荐(0)