1. 首页
  2. 数据库
  3. 其它
  4. python进程类subprocess的一些操作方法例子

python进程类subprocess的一些操作方法例子

上传者: 2021-02-23 16:43:27上传 PDF文件 50.94KB 热度 22次
subprocess.Popen用来创建子进程。 1)Popen启动新的进程与父进程并行执行,默认父进程不等待新进程结束。 复制代码 代码如下: def TestPopen(): import subprocess p=subprocess.Popen(“dir”,shell=True) for i in range(250) : print (“other things”) 2)p.wait函数使得父进程等待新创建的进程运行结束,然后再继续父进程的其他任务。且此时可以在p.returncode中得到新进程的返回值。 复制代码 代码如下: def TestWait():
用户评论