在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
时,要确保你信任要执行的命令,因为它可能会导致安全漏洞。避免执行来自不可信来源的命令。