gpt4 book ai didi

python - 字典 : get() not returning 0 if dict value contains None

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

python dict 如果键的值为 None 并且调用 get() 时返回 NoneType

ex_dict = {"test": None}
ex_dict.get('测试', 0)

在上面的例子中它应该返回 0 但它不会。

任何人都可以解释为什么它会这样。

最佳答案

不,不应该。如果在 ex_dict 字典中找不到 test 键,它应该返回 0。但是,因为它存在,它将返回 None

ex_dict = {"test" : None}
print type(ex_dict.get('test', 0)) # <class 'NoneType'>, 'test' exist, return None

print(ex_dict.get('hello', 0)) # prints 0, 'hello' isn't a key inside ex_dict

关于python - 字典 : get() not returning 0 if dict value contains None,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42805374/

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