怎么用subprocess模块获取函数结果
时间: 2024-06-04 17:13:07 浏览: 43
Python Subprocess模块原理及实例
5星 · 资源好评率100%
可以使用subprocess.check_output()函数来获取函数的结果。需要把函数作为参数传递给该函数,并设置shell参数为True。例如:
import subprocess
result = subprocess.check_output("python my_function.py 1 2", shell=True)
其中,my_function.py是包含需要执行的函数的Python脚本,1和2是该函数的输入参数。该函数执行完毕后,返回函数的输出结果。
阅读全文