import time import threading def job2(num): print("Thread: {}".format(num)) time.sleep(1) # 建立5個子執行緒 threads = [] for i in range(5): ...
確定! 回上一頁