是否可以在创建Python字典后添加密钥?它似乎没有.add()
方法。
答案 0 :(得分:2956)
d = {'key':'value'}
print(d)
# {'key': 'value'}
d['mynewkey'] = 'mynewvalue'
print(d)
# {'mynewkey': 'mynewvalue', 'key': 'value'}
答案 1 :(得分:937)
同时添加多个键:
>>> x = {1:2}
>>> print x
{1: 2}
>>> d = {3:4, 5:6, 7:8}
>>> x.update(d)
>>> print x
{1: 2, 3: 4, 5: 6, 7: 8}
对于添加单个密钥,接受的答案具有较少的计算开销。
答案 2 :(得分:790)
我想整合有关Python词典的信息:
data = {}
# OR
data = dict()
data = {'a':1,'b':2,'c':3}
# OR
data = dict(a=1, b=2, c=3)
# OR
data = {k: v for k, v in (('a', 1),('b',2),('c',3))}
data['a']=1 # Updates if 'a' exists, else adds 'a'
# OR
data.update({'a':1})
# OR
data.update(dict(a=1))
# OR
data.update(a=1)
data.update({'c':3,'d':4}) # Updates 'c' and adds 'd'
data3 = {}
data3.update(data) # Modifies data3, not data
data3.update(data2) # Modifies data3, not data2
del data[key] # Removes specific element in a dictionary
data.pop(key) # Removes the key & returns the value
data.clear() # Clears entire dictionary
key in data
for key in data: # Iterates just through the keys, ignoring the values
for key, value in d.items(): # Iterates through the pairs
for key in d.keys(): # Iterates just through key, ignoring the values
for value in d.values(): # Iterates just through value, ignoring the keys
data = dict(zip(list_with_keys, list_with_values))
随意添加更多!
答案 3 :(得分:151)
是的,这很容易。只需执行以下操作:
dict["key"] = "value"
答案 4 :(得分:125)
"是否可以在创建Python词典后将其添加到Python词典中?它似乎没有.add()方法。"
是的,它是可能的,它确实有一个方法可以实现这一点,但你不想直接使用它。
为了演示如何以及如何不使用它,让我们使用dict文字{}
创建一个空的dict:
my_dict = {}
要使用单个新密钥和值更新此dict,您可以使用提供项目分配的the subscript notation (see Mappings here):
my_dict['new key'] = 'new value'
my_dict
现在是:
{'new key': 'new value'}
update
方法 - 2种方式我们还可以使用the update
method有效地更新多个值的dict。我们可能会在此处不必要地创建额外的dict
,因此我们希望我们的dict
已经创建并来自或用于其他目的:
my_dict.update({'key 2': 'value 2', 'key 3': 'value 3'})
my_dict
现在是:
{'key 2': 'value 2', 'key 3': 'value 3', 'new key': 'new value'}
使用update方法执行此操作的另一种有效方法是使用关键字参数,但由于它们必须是合法的python单词,因此您不能使用空格或特殊符号或使用数字开头,但很多人会考虑这是一种为dict创建键的更易读的方法,在这里我们当然避免创建额外的不必要的dict
:
my_dict.update(foo='bar', foo2='baz')
现在和my_dict
:
{'key 2': 'value 2', 'key 3': 'value 3', 'new key': 'new value',
'foo': 'bar', 'foo2': 'baz'}
所以现在我们已经介绍了三种更新dict
的Pythonic方法。
__setitem__
,以及为什么要避免还有另一种更新dict
的方式,您不应该使用__setitem__
方法。以下是一个如何使用__setitem__
方法向dict
添加键值对的示例,并演示了使用它的效果不佳:
>>> d = {}
>>> d.__setitem__('foo', 'bar')
>>> d
{'foo': 'bar'}
>>> def f():
... d = {}
... for i in xrange(100):
... d['foo'] = i
...
>>> def g():
... d = {}
... for i in xrange(100):
... d.__setitem__('foo', i)
...
>>> import timeit
>>> number = 100
>>> min(timeit.repeat(f, number=number))
0.0020880699157714844
>>> min(timeit.repeat(g, number=number))
0.005071878433227539
因此我们看到使用下标符号实际上比使用__setitem__
要快得多。做Pythonic的事情,就是按照预期的方式使用语言,通常更具可读性和计算效率。
答案 5 :(得分:82)
dictionary[key] = value
答案 6 :(得分:50)
如果要在字典中添加字典,可以这样做。
示例:在词典中添加新条目&子词典
dictionary = {}
dictionary["new key"] = "some new entry" # add new dictionary entry
dictionary["dictionary_within_a_dictionary"] = {} # this is required by python
dictionary["dictionary_within_a_dictionary"]["sub_dict"] = {"other" : "dictionary"}
print (dictionary)
<强>输出:强>
{'new key': 'some new entry', 'dictionary_within_a_dictionary': {'sub_dict': {'other': 'dictionarly'}}}
注意: Python要求您先添加子
dictionary["dictionary_within_a_dictionary"] = {}
在添加条目之前。
答案 7 :(得分:36)
正统的语法是d[key] = value
,但如果你的键盘缺少方括号键,你可以这样做:
d.__setitem__(key, value)
事实上,定义__getitem__
和__setitem__
方法是如何让自己的类支持方括号语法的。见http://www.diveintopython.net/object_oriented_framework/special_class_methods.html
答案 8 :(得分:30)
你可以创建一个
class myDict(dict):
def __init__(self):
self = dict()
def add(self, key, value):
self[key] = value
## example
myd = myDict()
myd.add('apples',6)
myd.add('bananas',3)
print(myd)
给出
>>>
{'apples': 6, 'bananas': 3}
答案 9 :(得分:30)
This popular question解决了合并字典a
和b
的功能性方法。
以下是一些更简单的方法(在Python 3中测试)......
c = dict( a, **b ) ## see also https://stackoverflow.com/q/2255878
c = dict( list(a.items()) + list(b.items()) )
c = dict( i for d in [a,b] for i in d.items() )
注意:上述第一种方法仅在b
中的键是字符串时才有效。
要添加或修改单个元素,b
字典只包含该元素...
c = dict( a, **{'d':'dog'} ) ## returns a dictionary based on 'a'
这相当于......
def functional_dict_add( dictionary, key, value ):
temp = dictionary.copy()
temp[key] = value
return temp
c = functional_dict_add( a, 'd', 'dog' )
答案 10 :(得分:18)
让我们假装您想要生活在不可变的世界中,并且不想修改原始文件但想要创建一个新的dict
,这是在原始文件中添加新密钥的结果。
在Python 3.5+中,你可以这样做:
params = {'a': 1, 'b': 2}
new_params = {**params, **{'c': 3}}
Python 2的等价物是:
params = {'a': 1, 'b': 2}
new_params = dict(params, **{'c': 3})
以下任何一个:
params
仍然等于{'a': 1, 'b': 2}
和
new_params
等于{'a': 1, 'b': 2, 'c': 3}
有时您不想修改原件(您只想要添加到原件的结果)。 我发现这是以下内容的一个令人耳目一新的替代方案:
params = {'a': 1, 'b': 2}
new_params = params.copy()
new_params['c'] = 3
或
params = {'a': 1, 'b': 2}
new_params = params.copy()
new_params.update({'c': 3})
答案 11 :(得分:12)
这么多答案,但仍然每个人都忘记了奇怪的名字,奇怪的表现,但仍然得心应手dict.setdefault()
此
value = my_dict.setdefault(key, default)
基本上只是这样做:
try:
value = my_dict[key]
except KeyError: # key not found
value = my_dict[key] = default
e.g。
>>> mydict = {'a':1, 'b':2, 'c':3}
>>> mydict.setdefault('d', 4)
4 # returns new value at mydict['d']
>>> print(mydict)
{'a':1, 'b':2, 'c':3, 'd':4} # a new key/value pair was indeed added
# but see what happens when trying it on an existing key...
>>> mydict.setdefault('a', 111)
1 # old value was returned
>>> print(mydict)
{'a':1, 'b':2, 'c':3, 'd':4} # existing key was ignored
答案 12 :(得分:4)
您可以通过dict.update(Iterable_Sequence of key:value)
示例:
wordFreqDic.update( {'before' : 23} )
答案 13 :(得分:3)
如果您不加入两个字典,而是将新的键值对添加到字典中,那么使用下标表示法似乎是最好的方法。
import timeit
timeit.timeit('dictionary = {"karga": 1, "darga": 2}; dictionary.update({"aaa": 123123, "asd": 233})')
>> 0.49582505226135254
timeit.timeit('dictionary = {"karga": 1, "darga": 2}; dictionary["aaa"] = 123123; dictionary["asd"] = 233;')
>> 0.20782899856567383
但是,如果您想添加例如数千个新的键值对,则应考虑使用update()
方法。
答案 14 :(得分:3)
这是我在这里看不到的另一种方式:
>>> foo = dict(a=1,b=2)
>>> foo
{'a': 1, 'b': 2}
>>> goo = dict(c=3,**foo)
>>> goo
{'c': 3, 'a': 1, 'b': 2}
您可以使用字典构造函数和隐式扩展来重建字典。此外,有趣的是,该方法可用于控制字典构建(post Python 3.6)期间的位置顺序。 In fact, insertion order is guaranteed for Python 3.7 and above!
>>> foo = dict(a=1,b=2,c=3,d=4)
>>> new_dict = {k: v for k, v in list(foo.items())[:2]}
>>> new_dict
{'a': 1, 'b': 2}
>>> new_dict.update(newvalue=99)
>>> new_dict
{'a': 1, 'b': 2, 'newvalue': 99}
>>> new_dict.update({k: v for k, v in list(foo.items())[2:]})
>>> new_dict
{'a': 1, 'b': 2, 'newvalue': 99, 'c': 3, 'd': 4}
>>>
上面使用的是字典理解。
答案 15 :(得分:2)
我认为指出Python的 collections
模块也是有用的,该模块由许多有用的字典子类和包装器组成,这些子类和包装器简化了添加和修改数据类型的过程。字典,特别是defaultdict
:
dict子类,该子类调用工厂函数以提供缺失值
如果您要使用始终由相同数据类型或结构组成的字典(例如列表字典),这将特别有用。
>>> from collections import defaultdict
>>> example = defaultdict(int)
>>> example['key'] += 1
>>> example['key']
defaultdict(<class 'int'>, {'key': 1})
如果键尚不存在,则defaultdict
将给定的值(在我们的情况下为10
)分配为字典的初始值(通常在循环中使用)。因此,此操作有两件事:将新关键字添加到字典中(根据问题),和在关键字尚不存在时分配值。标准字典,这会引发错误,因为+=
操作正在尝试访问尚不存在的值:
>>> example = dict()
>>> example['key'] += 1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: 'key'
如果不使用defaultdict
,添加新元素的代码量将大得多,并且可能看起来像这样:
# This type of code would often be inside a loop
if 'key' not in example:
example['key'] = 0 # add key and initial value to dict; could also be a list
example['key'] += 1 # this is implementing a counter
defaultdict
也可以用于复杂的数据类型,例如list
和set
:
>>> example = defaultdict(list)
>>> example['key'].append(1)
>>> example
defaultdict(<class 'list'>, {'key': [1]})
添加元素会自动初始化列表。
答案 16 :(得分:2)
添加字典键,值类。
class myDict(dict):
def __init__(self):
self = dict()
def add(self, key, value):
#self[key] = value # add new key and value overwriting any exiting same key
if self.get(key)!=None:
print('key', key, 'already used') # report if key already used
self.setdefault(key, value) # if key exit do nothing
## example
myd = myDict()
name = "fred"
myd.add('apples',6)
print('\n', myd)
myd.add('bananas',3)
print('\n', myd)
myd.add('jack', 7)
print('\n', myd)
myd.add(name, myd)
print('\n', myd)
myd.add('apples', 23)
print('\n', myd)
myd.add(name, 2)
print(myd)
答案 17 :(得分:2)
这是一个简单的方法!
your_dict = {}
your_dict['someKey'] = 'someValue'
这将在 key: value
字典中添加一个新的 your_dict
对,其中包含 key = someKey
和 value = somevalue
如果 somekey
中已经存在键 your_dict
,您也可以使用这种方式来更新它的值。
答案 18 :(得分:1)
首先检查密钥是否已经存在
a={1:2,3:4}
a.get(1)
2
a.get(5)
None
然后您可以添加新的键和值
答案 19 :(得分:1)
您可以使用方括号:
my_dict={}
my_dict["key"]="value"
或者你可以使用 .update() 方法:
my_another_dict={"key":"value"}
my_dict={}
my_dict.update(my_another_dict)
希望能帮到你:D
答案 20 :(得分:0)
your_dict = {}
添加新密钥:
your_dict[key]=value
your_dict.update(key=value)
答案 21 :(得分:-1)
它没有.update()
,但是有dict = {}
dict.update("key":value)
。
您可以像这样使用它:
def dict_add(dict, key, value):
dict.update(key:value)
您可以拥有自己的.add()函数。
$ sed '/^0$/d' file
0.0005
lii_bk_new
traj_new.xyz
73001
146300
就这么简单。