如何检查字典中是否存在某个值?
我在 python 中有以下字典:
d = {'1': 'one', '3': 'three', '2': 'two', '5': 'five', '4': 'four'}
我需要一种方法来查找该字典中是否存在“一”或“二”等值。
例如,如果我想知道索引“1”是否存在,我只需输入:
"1" in d
然后 python 会告诉我这是真还是假,但是我需要做同样的事情,除了查找一个值是否存在存在。
I have the following dictionary in python:
d = {'1': 'one', '3': 'three', '2': 'two', '5': 'five', '4': 'four'}
I need a way to find if a value such as "one" or "two" exists in this dictionary.
For example, if I wanted to know if the index "1" existed I would simply have to type:
"1" in d
And then python would tell me if that is true or false, however I need to do that same exact thing except to find if a value exists.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您可以使用这个:
或者:
You can use this:
Or:
在 Python 3 中,您可以使用字典的
values()
函数。它返回值的视图对象。反过来,它可以传递给返回迭代器对象的 iter 函数。可以使用in
检查迭代器,如下所示,或者您可以直接使用视图对象,因为它类似于列表
In Python 3 you can use the
values()
function of the dictionary. It returns a view object of the values. This, in turn, can be passed to theiter
function which returns an iterator object. The iterator can be checked usingin
, like this,Or you can use the view object directly since it is similar to a list
出于好奇,一些比较时间:
编辑:如果您想知道为什么......原因是上述每个返回不同类型的对象,这可能或可能不太适合查找操作:
编辑2:根据评论中的要求...
Out of curiosity, some comparative timing:
EDIT: And in case you wonder why... the reason is that each of the above returns a different type of object, which may or may not be well suited for lookup operations:
EDIT2: As per request in comments...
在 Python 3 中,您可以用来
测试
"one"
是否在字典的值中。在 Python 2 中,使用它会更高效
。
请注意,这会触发对字典值的线性扫描,一旦找到就会短路,因此这比检查键是否存在效率低得多。
In Python 3, you can use
to test if
"one"
is among the values of your dictionary.In Python 2, it's more efficient to use
instead.
Note that this triggers a linear scan through the values of the dictionary, short-circuiting as soon as it is found, so this is a lot less efficient than checking whether a key is present.
Python 字典有 get(key) 函数
例如,
如果您的密钥不存在,那么它将返回
None
值。与低于 3.0 和高于 5.0 的版本相关的内容。
Python dictionary has get(key) function
For Example,
If your key does not exist, then it will return
None
value.Content relevant to versions less than 3.0 and greater than 5.0.
使用字典视图:
Use dictionary views:
检查值是否存在的不同类型
如果值列表
如果包含字符串值的值列表会怎样
Different types to check the values exists
What if list of values
What if list of values with string values