python3运行shell命令

1
2
3
4
5
6
7
import subprocess
subprocess.run("xxx",shell=True)

#或者

import os
os.system("xxx")

python3运行shell命令
https://xinhaojin.github.io/2021/02/03/python3用subprocess运行shell命令/
作者
xinhaojin
发布于
2021年2月3日
许可协议