gpt4 book ai didi

python - 在 python 中处理不存在的属性最优雅的方法是什么?

转载 作者:行者123 更新时间:2023-12-01 03:12:08 27 4
gpt4 key购买 nike

我对鸭子类型(duck typing)很陌生,有以下问题。

那还有什么更好的办法

try:
what_i_want = obj.some_attr
except AttributeError: # this attribute does not exist, or something other wrong happened
what_i_want = default_value_for_what_i_want

我希望在一个简单的语句中看到类似典型的获取值或 None 的内容,例如

if(i is not None and i < 10):

最佳答案

您可以使用getattr内置:

what_i_want = getattr(obj, 'some_attr', default_value)

关于python - 在 python 中处理不存在的属性最优雅的方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42795127/

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