摘要:
# -*- codeing: utf-8 —*— import time import threading # 线程同步 class MyThead(threading.Thread): def __init__(self, name, delay): threading.Thread.__init 阅读全文
摘要:
# -*- codeing: utf-8 —*— import time import threading # 使用 threading 模块创建线程 class MyThread(threading.Thread): def __init__(self, name, delay): threadi 阅读全文