摘要:
import time #获取本地时间 localtime =time.localtime(time.time()) #返回的是以元组形式的参数:time.struct_time(tm_year=2021, tm_mon=6, tm_mday=3, tm_hour=13, tm_min=34, tm 阅读全文
摘要:
import queue import threading import time exitFlag =0 class myThread(threading.Thread): def __init__(self, threadID, name, m_queue): threading.Thread. 阅读全文
摘要:
import threading import time exitFlag =0 class myThread(threading.Thread): def __init__(self, threadID, name, counter): threading.Thread.__init__(self 阅读全文