标签:作用 shel popen 模块 process open 返回 run gbk
作用:用于执行系统命令
常用方法
run 返回一个表示执行结果的对象
call 返回的执行的状态码
obj = subprocess.Popen(‘tasklistadfasf‘, # 命令
shell=True,
stdout=subprocess.PIPE, #命令正确结果
stderr=subprocess.PIPE #命令错误结果
)
# res = obj.stdout.read().decode(‘gbk‘)
# print(res)
# res1 = obj.stderr.read().decode(‘gbk‘)
# print(res1)
标签:作用 shel popen 模块 process open 返回 run gbk
原文地址:https://www.cnblogs.com/liu--huan/p/9478160.html