gpt4 book ai didi

python - 提取前在字典中键入 [Pythonic 方法]

转载 作者:太空宇宙 更新时间:2023-11-04 06:46:21 25 4
gpt4 key购买 nike

在提取元素并将其用于比较之前检查元素是否在字典中的“pythonic”方法是什么?

例如:

我现在是

if "key1" in list2 and list2["key1"]=="5":
print "correct"

这样,如果失败,它将在第一个条件下短路。但是,这会导致很长的条件语句。

但是有没有更“pythonic”的方法?我猜想将条件语句包装在 try catch 中是一个更糟糕的主意。

最佳答案

不 - try/except 绝对没问题:

try:
if list2['key1'] == '5':
# do something
except KeyError:
# key wasn't found
except ValueError:
# most likely value wasn't comparable...

关于python - 提取前在字典中键入 [Pythonic 方法],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16904532/

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