Python菜鳥編程第十九課之多進程拓展

Python菜鳥編程第十九課之多進程拓展 1.多進程修改全局變量 demo1:python import os import time num=0 pid=os.fork() if pid ==0: num+=1 print('son jc %s'%num) else: time.sleep(1) num+=1 print('father jc %s'%num) 運行結果: son j
相關文章
相關標籤/搜索