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:多进程-小例子的主要内容,如果未能解决你的问题,请参考以下文章