摘要: 1.进程 # ### 进程 import os,time #当前进程id(子进程) res = os.getpid() print(res) #1772 #当前进程id(父进程) res = os.getppid print(res) #1772 #(1) 进程的基本语法 from multipro 阅读全文
posted @ 2020-06-10 01:52 我在路上回头看 阅读(202) 评论(0) 推荐(0) 编辑