import threading import time # 子執行緒類別 class MyThread(threading.Thread): def __init__(self, num): threading.Thread.__init__(self) self.num ...
確定! 回上一頁