gpt4 book ai didi

python - 有没有更好的方法来恢复 IF 内函数的参数而无需调用两次?

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

我有一段代码,它可以工作,但是执行起来需要很长时间,我制作了这个简化版本来说明我的问题

def teste(x):
if x > 1:
return x, "whatever", {'foo':'bar'}
else:
return False

x = 2

if teste(x):
a,b,c = teste(x)
else:
print("false")

有更好的方法吗?我已经尝试过了

if(a,b,c = teste(x)):

但我遇到语法错误

最佳答案

调用函数时不必解压。

将结果存储在变量中然后进行测试

result = teste(x)
if result:
a,b,c = result
else:
print("false")

关于python - 有没有更好的方法来恢复 IF 内函数的参数而无需调用两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57400257/

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