共计 384 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,subprocess
模块是一个内置的模块,无需安装。您可以直接使用它来执行外部命令、启动子进程等操作。
以下是一个使用 subprocess
模块的示例:
import subprocess
# 执行外部命令
output = subprocess.run(['ls', '-l'], capture_output=True, text=True)
print(output.stdout)
# 启动子进程
subprocess.Popen(['python', 'script.py'])
请注意,subprocess
模块提供了多种功能和选项,具体使用方法可以参考官方文档:https://docs.python.org/3/library/subprocess.html
丸趣 TV 网 – 提供最优质的资源集合!
正文完