码迷,mamicode.com
首页 > 编程语言 > 详细

python的subprocess模块

时间:2018-09-04 17:03:19      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:process   port   学习   tde   print   shell   os模块   shel   RoCE   

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模块

标签:process   port   学习   tde   print   shell   os模块   shel   RoCE   

原文地址:https://www.cnblogs.com/zhuhaofeng/p/9584942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!