进程与线程的区别:进程不共享空间,线程共享地址空间 线程共享空间优缺点:优点:多线程给用户的体验好些,打开时占用的内存比进程少缺点:共享地址空间会相互干扰,甚至有影响 import threading import time class Mythreading(threading.Thread): def __init__(self,threadID,name,counter): threading.Thread.__init__(self) #固定格式 self.threadID = thre…