Python3:多进程-小例子

Posted rtczza

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3:多进程-小例子相关的知识,希望对你有一定的参考价值。

参考链接:

https://www.cnblogs.com/284628487a/p/5590857.html

 

----

代码:

#!/usr/bin/python3

import os
print("getpid : %d" % os.getpid())

pid = os.fork()
if pid == 0 :
	print("child ! getpid :%d 	 getppid() :%d " % (os.getpid(), os.getppid()));
else:
	print("parent ! getpid :%d 	 getppid() :%d " % (os.getpid(), os.getppid()));

 运行结果:

getpid : 20198
parent ! getpid :20198 	 getppid() :16844 
child ! getpid :20199 	 getppid() :20198 

以上是关于Python3:多进程-小例子的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

python3学习笔记多线程与多进程

多进程——waitpid()函数的小例子

代码片段:Shell脚本实现重复执行和多进程

多个请求是多线程吗

python3多进程和进程池