gpt4 book ai didi

Python - 无论发生什么异常,我如何让程序永远运行?

转载 作者:行者123 更新时间:2023-11-28 21:33:33 24 4
gpt4 key购买 nike

所以我有一些形式:

def func():
while True:
do_stuff()

try:
func()
except:
func()

我原以为如果我的 func 循环出现任何问题,它会重新开始,但实际上错误会导致它崩溃。如果出现任何问题,我怎样才能让它重新启动?

最佳答案

您可以尝试将 try-except 放在 while 循环中,并在 except block 中使用 pass

例如:

def func():
while True:
do_stuff()

while True:
try:
func()
except:
pass

关于Python - 无论发生什么异常,我如何让程序永远运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54549064/

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