##### os 进程管理 ```python os.getpid() # 返回当前进程ID os.system(command) # 在一个新的子shell中执行指定的系统命令, 打印命令结果, 返回执行状态, 返回0表示成功 os.popen(command) # 打开一个管道连接到命令的标准输入或输出,并返回一个文件对象 ```