gpt4 book ai didi

python - 字典有 has key 方法吗?我正在检查 'None',我遇到了问题

转载 作者:太空宇宙 更新时间:2023-11-03 12:25:42 24 4
gpt4 key购买 nike

我有 2 个字典,我想检查其中一个字典中是否有某个键。

我正在尝试:

if dic1[p.sku] is not None:

无论如何,我希望有一个 hasKey 方法。

如果找不到 key ,我会收到错误消息,这是为什么?

最佳答案

使用 in 运算符:

if p.sku in dic1:
...

(顺便说一下,您也可以使用 has_key 方法,但最好使用 in。)

关于python - 字典有 has key 方法吗?我正在检查 'None',我遇到了问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3392637/

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