问题:检查字典中是否已存在给定键
我想在更新密钥值之前测试字典中是否存在密钥。我写了以下代码:
if 'key1' in dict.keys():
print "blah"
else:
print "boo"
我认为这不是完成此任务的最佳方法。有没有更好的方法来测试字典中的键?
回答 0
d = {"key1": 10, "key2": 23}
if "key1" in d:
print("this will execute")
if "nonexistent key" in d:
print("this will not")
如果您想使用默认值,可以随时使用dict.get()
:
d = dict()
for i in range(100):
key = i % 10
d[key] = d.get(key, 0) + 1
如果您想始终确保任何键的默认值,则可以dict.setdefault()
重复使用,也可以defaultdict
从collections
模块中使用,例如:
from collections import defaultdict
d = defaultdict(int)
for i in range(100):
d[i % 10] += 1
但总的来说,in
关键字是最好的方法。
回答 1
回答 2
您可以使用in关键字测试字典中是否存在键:
d = {'a': 1, 'b': 2}
'a' in d # <== evaluates to True
'c' in d # <== evaluates to False
在更改字典之前,在字典中检查键是否存在的常见用途是对值进行默认初始化(例如,如果您的值是列表,并且您想确保可以在其后附加一个空列表)在插入键的第一个值时)。在这种情况下,您可能会发现collections.defaultdict()
感兴趣的类型。
在较旧的代码中,您可能还会发现的某些用法has_key()
,这是一种不赞成使用的方法,用于检查字典中键的存在(仅使用key_name in dict_name
,而不是)。
回答 3
您可以缩短此时间:
if 'key1' in dict:
...
但是,这充其量是对化妆品的改善。为什么您认为这不是最好的方法?
回答 4
有关快速执行接受的答案的建议方法(10m循环)的其他信息:
'key' in mydict
经过时间1.07秒mydict.get('key')
经过时间1.84秒mydefaultdict['key']
经过时间1.07秒
因此,建议使用in
或defaultdict
反对get
。
回答 5
我建议改用该setdefault
方法。听起来它将满足您的所有要求。
>>> d = {'foo':'bar'}
>>> q = d.setdefault('foo','baz') #Do not override the existing key
>>> print q #The value takes what was originally in the dictionary
bar
>>> print d
{'foo': 'bar'}
>>> r = d.setdefault('baz',18) #baz was never in the dictionary
>>> print r #Now r has the value supplied above
18
>>> print d #The dictionary's been updated
{'foo': 'bar', 'baz': 18}
回答 6
python中的Dictionary具有get(’key’,default)方法。因此,您可以在没有密钥的情况下设置默认值。
values = {...}
myValue = values.get('Key', None)
回答 7
如何使用EAFP(比请求更容易获得宽恕):
try:
blah = dict["mykey"]
# key exists in dict
except KeyError:
# key doesn't exist in dict
查看其他SO帖子:
回答 8
使用三元运算符:
message = "blah" if 'key1' in dict else "booh"
print(message)
回答 9
获得结果的方法是:
- 如果your_dict.has_key(key)在Python 3中删除
- 如果键入your_dict
- 尝试/除外块
哪个更好取决于三个因素:
- 字典“通常没有钥匙”还是“通常没有钥匙”。
- 您是否打算使用if … else … elseif … else之类的条件?
- 字典有多大?
了解更多:http : //paltman.com/try-except-performance-in-python-a-simple-test/
使用try / block代替“ in”或“ if”:
try:
my_dict_of_items[key_i_want_to_check]
except KeyError:
# Do the operation you wanted to do for "key not present in dict".
else:
# Do the operation you wanted to do with "key present in dict."
回答 10
仅限于Python 2 :(并且python 2.7 in
已经支持)
您可以使用has_key()方法:
if dict.has_key('xyz')==1:
#update the value for the key
else:
pass
回答 11
只是克里斯的补充。B(最佳答案):
d = defaultdict(int)
也可以;原因是调用int()
返回0
是defaultdict
后台操作(在构造字典时),因此在文档中称为“工厂功能”。
回答 12
检查字典中是否已存在给定键
为了了解如何做到这一点,我们首先检查可以在字典上调用哪些方法。方法如下:
d={'clear':0, 'copy':1, 'fromkeys':2, 'get':3, 'items':4, 'keys':5, 'pop':6, 'popitem':7, 'setdefault':8, 'update':9, 'values':10}
Python Dictionary clear() Removes all Items
Python Dictionary copy() Returns Shallow Copy of a Dictionary
Python Dictionary fromkeys() Creates dictionary from given sequence
Python Dictionary get() Returns Value of The Key
Python Dictionary items() Returns view of dictionary (key, value) pair
Python Dictionary keys() Returns View Object of All Keys
Python Dictionary pop() Removes and returns element having given key
Python Dictionary popitem() Returns & Removes Element From Dictionary
Python Dictionary setdefault() Inserts Key With a Value if Key is not Present
Python Dictionary update() Updates the Dictionary
Python Dictionary values() Returns view of all values in dictionary
检查密钥是否已存在的残酷方法可能是get()
:
d.get("key")
其他两种有趣的方法items()
和keys()
听起来工作量太大。因此,让我们检查一下get()
是否适合我们。我们有我们的字典d
:
d= {'clear':0, 'copy':1, 'fromkeys':2, 'get':3, 'items':4, 'keys':5, 'pop':6, 'popitem':7, 'setdefault':8, 'update':9, 'values':10}
打印显示我们没有的密钥将返回None
:
print(d.get('key')) #None
print(d.get('clear')) #0
print(d.get('copy')) #1
如果密钥存在或不存在,我们可能会用它来获取信息。但是,如果我们使用单个命令创建字典,请考虑以下问题key:None
:
d= {'key':None}
print(d.get('key')) #None
print(d.get('key2')) #None
get()
如果某些值可能是,导致该方法不可靠None
。这个故事的结局应该更快乐。如果我们使用in
比较器:
print('key' in d) #True
print('key2' in d) #False
我们得到正确的结果。我们可以检查一下Python字节码:
import dis
dis.dis("'key' in d")
# 1 0 LOAD_CONST 0 ('key')
# 2 LOAD_NAME 0 (d)
# 4 COMPARE_OP 6 (in)
# 6 RETURN_VALUE
dis.dis("d.get('key2')")
# 1 0 LOAD_NAME 0 (d)
# 2 LOAD_METHOD 1 (get)
# 4 LOAD_CONST 0 ('key2')
# 6 CALL_METHOD 1
# 8 RETURN_VALUE
这表明in
比较运算符不仅比更加可靠,而且甚至更快get()
。
回答 13
Python字典具有称为的方法__contains__
。如果字典具有键,则此方法将返回True,否则返回False。
>>> temp = {}
>>> help(temp.__contains__)
Help on built-in function __contains__:
__contains__(key, /) method of builtins.dict instance
True if D has a key k, else False.
回答 14
共享使用布尔运算符检查密钥是否存在的另一种方法。
d = {'a': 1, 'b':2}
keys = 'abcd'
for k in keys:
x = (k in d and 'blah') or 'boo'
print(x)
这返回
>>> blah
>>> blah
>>> boo
>>> boo
说明
首先,你应该知道,在Python, ,0
,None
或长度为零的对象评估为False
。其他所有内容的计算结果均为True
。布尔运算从左到右求值,并且返回的操作数不是True或False。
让我们来看一个例子:
>>> 'Some string' or 1/0
'Some string'
>>>
由于'Some string'
评估为True
,因此or
不会评估其余的,因此不会产生除以零的误差。
但是,如果我们切换顺序,1/0
则会首先评估订单并引发异常:
>>> 1/0 or 'Some string'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ZeroDivisionError: division by zero
>>>
我们可以使用此模式检查密钥是否存在。
(k in d and 'blah')
与…相同
if k in d:
'blah'
else:
False
如果键存在,这已经返回了正确的结果,但是我们希望它在不存在时打印“ boo”。因此,我们将结果or
与'boo'
>>> False or 'boo'
'boo'
>>> 'blah' or 'boo'
'blah'
>>>
回答 15
您可以使用for
循环遍历字典并获取要在字典中找到的键的名称,然后使用if
条件检查其是否存在:
dic = {'first' : 12, 'second' : 123}
for each in dic:
if each == 'second':
print('the key exists and the corresponding value can be updated in the dictionary')