摘要: ~~~ 多进程 Windows下面没有fork ,请在linux下跑下面的代码 import os print('Process (%s) start...' % os.getpid()) pid = os.fork() if pid==0: print('I am child process (% 阅读全文
posted @ 2018-05-11 20:10 畅畅1 阅读(224) 评论(0) 推荐(0) 编辑