温馨提示×

python怎么执行dos命令

小亿
81
2024-12-07 05:07:26
栏目: 编程语言

在Python中,你可以使用subprocess模块来执行DOS命令

import subprocess

# 要执行的DOS命令,例如:dir
command = "dir"

# 使用subprocess.run()执行命令
result = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, shell=True)

# 打印执行结果
print("命令输出:")
print(result.stdout)
print("错误信息:")
print(result.stderr)
print("返回码:", result.returncode)

注意:在使用shell=True时,要确保你信任要执行的命令,因为它可能会导致安全漏洞。避免执行来自不可信来源的命令。

0