gpt4 book ai didi

python - 尝试不同的功能,直到一个不抛出异常

转载 作者:太空狗 更新时间:2023-10-30 00:00:48 26 4
gpt4 key购买 nike

我有一些函数可以尝试各种方法来解决基于一组输入数据的问题。如果该方法无法解决问题,则该函数将抛出异常。

我需要按顺序尝试它们,直到一个不抛出异常为止。

我正试图找到一种优雅的方式来做到这一点:

try:
answer = method1(x,y,z)
except MyException:
try:
answer = method2(x,y,z)
except MyException:
try:
answer = method3(x,y,z)
except MyException:
...

在伪代码中,我的目标是:

tryUntilOneWorks:
answer = method1(x,y,z)
answer = method2(x,y,z)
answer = method3(x,y,z)
answer = method4(x,y,z)
answer = method5(x,y,z)
except:
# No answer found

明确一点:除非method1失败,否则不得调用method2,依此类推。

最佳答案

鉴于 Python 函数是一等对象,您可以将它们添加到序列中:

methods = [method1, method2, method3, ..., methodN]

在这种情况下,将列表中的每一项应用到您的论点,直到一个失败是很简单的:

def find_one_that_works(*args, **kwargs):
for method in methods:
try:
return method(*args, **kwargs)
except MyException:
pass
raise MyException('All methods failed')

关于python - 尝试不同的功能,直到一个不抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57926936/

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