fork的使用方法:
import os import time # 主进程执行到os.fork()会产生一个子进程。ret>0,代表主进程;ret=0,代表子进程 ret=os.fork() # 从这句开始,父进程和子进程都会执行以下的代码 print(ret) if ret>0: print(‘---父进程--{}-‘.format(os.getpid)) time.sleep(1) else: print(‘---子进程-{}-{}-‘.format(os.getpid,os.getppid())) time.sleep(1)
note:fork只能在linux平台下使用,其他平台没有该方法。