摘要: import threading import time def aaa(): time.sleep(2) print('aaa') a = threading.Thread(target=aaa) a.setDaemon(True) a.start() print('sleep') time.sl 阅读全文
posted @ 2021-03-18 11:48 pythoner_wl 阅读(1040) 评论(0) 推荐(0) 编辑