python如何执行cmd命令
时间: 2023-09-08 20:14:37 浏览: 98
可以使用Python内置的subprocess模块来执行cmd命令,示例如下:
```python
import subprocess
# 执行cmd命令
result = subprocess.run(['cmd', '/c', 'dir'], capture_output=True, text=True)
# 输出执行结果
print(result.stdout)
```
以上代码将执行Windows系统下的dir命令,并输出其执行结果。请注意,这里使用了参数`capture_output=True, text=True`,这可以使得执行结果以字符串形式返回。如果不设置这两个参数,执行结果会以字节流形式返回。
阅读全文