多线程共同操作同一个数据互斥锁同步? import threading import time num = 0 mutex = threading.Lock() class MyThread(threading.Thread): def run(self):