python的subprocess模块

Posted 36°艳阳天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的subprocess模块相关的知识,希望对你有一定的参考价值。

python的subprosess模块比os模块更加强大,查了一些资料它的出现就是为了替换老旧的os模块的,以后要多学习一些subprocess模块的东西,最近在学习网络变成,用到了subprocess的一些用法,现在总结一些,以后有新加的都添加都这里面

import subprocess

res=subprocess.Popen("dir",
                     shell=True,
                     stderr=subprocess.PIPE,
                     stdout=subprocess.PIPE)

print(res.stdout.read().decode("gbk"))

  

 

以上是关于python的subprocess模块的主要内容,如果未能解决你的问题,请参考以下文章

使用 subprocess 模块是不是会释放 python GIL?

python常用代码片段总结

Python模块 - subprocess

python的subprocess模块

python模块之subprocess模块, struct模块

python模块--subprocess