对Python中创建进程的两种方式以及进程池详解

时间:2024-02-09 22:34:11
【文件属性】:

文件名称:对Python中创建进程的两种方式以及进程池详解

文件大小:45KB

文件格式:PDF

更新时间:2024-02-09 22:34:11

程池 进程

在Python中创建进程有两种方式,第一种是: from multiprocessing import Process import time def test(): while True: print('---test---') time.sleep(1) if __name__ == '__main__': p=Process(target=test) p.start() while True: print('---main---') time.sleep(1) 上面这段代码是在windows下跑的,通过Process类可以创建一个进程对象,然后p.start()


网友评论