python 多线程类报错:group argument must be None for now

AssertionError: group argument must be None for now

  • python多线程类报错
    • 解决方法:加入初始化进程类

python多线程类报错

解决方法:加入初始化进程类

// An highlighted block
class MyThread(Thread):
    def __init__(self,name):
        Thread.__init__(self) # 初始化线程类
        self.name = name
    def run

你可能感兴趣的:(python)