云主机测评网云主机测评网云主机测评网

云主机测评网
www.yunzhuji.net

python如何调用shell命令

在Python中,可以使用subprocess模块来调用Shell命令,以下是详细的步骤和示例代码:

(图片来源网络,侵删)

1、导入subprocess模块

import subprocess

2、使用subprocess.run()函数执行Shell命令

result = subprocess.run(['ls', 'l'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)

3、获取命令执行结果

output = result.stdout.decode('utf8')
error = result.stderr.decode('utf8')
return_code = result.returncode

4、打印执行结果

print("输出:", output)
print("错误:", error)
print("返回码:", return_code)

完整示例代码:

import subprocess
result = subprocess.run(['ls', 'l'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output = result.stdout.decode('utf8')
error = result.stderr.decode('utf8')
return_code = result.returncode
print("输出:", output)
print("错误:", error)
print("返回码:", return_code)
打赏
版权声明:主机测评不销售、不代购、不提供任何支持,仅分享信息/测评(有时效性),自行辨别,请遵纪守法文明上网。
文章名称:《python如何调用shell命令》
文章链接:https://www.yunzhuji.net/jishujiaocheng/42724.html

评论

  • 验证码