创建线程类的实例后,我们可以调用start方法来启动线程。 python if __name__ == "__main__": # 创建线程实例 thread1 = MyThread("Thread-1") thread2 = MyThread("Thread-2") # 启动线程 thread1.start() thread2.start() 5. 使用join方法等待线程执行完毕 为了确保主线程等待所有子线程执行完毕后...