源码片段: class myThread(threading.Thread): def __init__(self, threadID, name, counter): threading.Thread.__init__(self) self.threadID = threadID self.name = name self.counter = counter 执行时提示如下错误: Traceback (most recent call last): File "threading.py&quo…