这主要介绍一下treading模块
最简单的方法
tred=threading.Thread(target=start)
tred.start() #开始线程
tred.join() #等待线程介绍
注意一定要写target,要不然启动的就
2020-02-28