码迷,mamicode.com
首页 > 编程语言 > 详细

Python3:多进程-小例子

时间:2020-01-02 20:41:07      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:bsp   tpi   com   www   python3   https   port   链接   小例子   

参考链接:

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 \t getppid() :%d " % (os.getpid(), os.getppid()));
else:
	print("parent ! getpid :%d \t getppid() :%d " % (os.getpid(), os.getppid()));

 运行结果:

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

Python3:多进程-小例子

标签:bsp   tpi   com   www   python3   https   port   链接   小例子   

原文地址:https://www.cnblogs.com/rtczza/p/12141791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!