gpt4 book ai didi

python - 我想查看Python的subprocess是否成功或者是否出错

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:22 24 4
gpt4 key购买 nike

我正在尝试使用 python 子进程创建代码。

#code = 'print("hey")' #OK
code = 'print"hey")' #SyntaxError
with open(filename, 'w') as f:
f.write(code)

proc = s.Popen(['python',filename], stdout=s.PIPE, stderr=s.STDOUT)
stdout_v, stderr_v = proc.communicate('')
print(stdout_v.decode('utf8'))

大致是这样的

目前,子进程的返回值无论是正常运行还是出现语法错误,都包含在stdout_v中,无法区分。

正常执行能不能收到输出,出错能收到子进程的错误信息?

最佳答案

在 Python 3.5+ 中使用子进程的推荐方法是使用 run function .

proc = s.run(['python',filename], stdout=s.PIPE, stderr=s.PIPE, check=False)
stdout_v, stderr_v, = proc.stdout, proc.stderr
return_code = proc.return_code

设置 check=True 以在返回码非零时抛出错误(这是发生错误的指示)。

在旧版本的 Python 中,我通常更喜欢使用 check_outputcall功能。如果检测到非零退出代码,check_output 将抛出错误,而调用函数将正常继续。

关于python - 我想查看Python的subprocess是否成功或者是否出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48025875/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com