Python 进程与多线程
10 进程和多线程
10.1 多进程
# -*- coding: utf-8 -*-
import os
pid=os.fork()
print ('process (%s)start ...' %os.getpid())
if pid==0:
print('I am child process (%s) and my parent is %s.' % (os.getpid(), os.getppid()))
else:
print('I (%s) just created a child process (%s).' % (os.getpid(), pid))
我希望有个如你一般的人,
如山间清爽的风,
如古城温暖的光,
只要最后是你就好。
今天, 你路过了谁?
谁又丢失了你呢?