gpt4 book ai didi

python - 如果任何脚本有错误,如何停止运行多个python脚本

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:23:24 30 4
gpt4 key购买 nike

我有运行多个 python 和 shell 程序的 python 脚本 (installer.py):

print "Going to run Script1"

os.system("python script1.py")

print "Going to run Script2"

os.system("python script2.py")

但我发现,即使 script1.py 由于错误而没有运行,它也会继续运行 script2.py。

如何在 script1.py 本身时停止脚本 (installer.py)..

最佳答案

os.system 将返回系统调用的退出状态。只需检查您的命令是否正确执行。

ret = os.system('python script1.py')
if ret != 0:
# call failed
raise Exception("System call failed with error code %d" % ret)


ret = os.system('python script2.py')
if ret != 0:
# call failed
raise Exception("System call failed with error code %d" % ret)

关于python - 如果任何脚本有错误,如何停止运行多个python脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39490989/

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