一、threading模塊
multiprocess模塊的完全模仿了threading模塊的接口,二者在使用層面,有很大的相似性。
1.開啟線程的兩種方式(同Process)
方法一
from threading import Threadimport timedef sayhi(name): time.sleep(2) print('%s say hello' %name)if __name__ == '__main__': t=Thread(target=sayhi,args=('hh',)) t.start() print('主線程')
主線程 hh say hello