import threading import time # 子執行緒的工作函數 def job(num): print("Thread", num) time.sleep(1) # 建立5 個子執行緒 threads = [] for i in ...
確定! 回上一頁