Answers:
只需2个步骤即可轻松完成:
dictionary[new_key] = dictionary[old_key]
del dictionary[old_key]
或第一步
dictionary[new_key] = dictionary.pop(old_key)
KeyError
如果dictionary[old_key]
未定义,它将引发。请注意,这将删除dictionary[old_key]
。
>>> dictionary = { 1: 'one', 2:'two', 3:'three' }
>>> dictionary['ONE'] = dictionary.pop(1)
>>> dictionary
{2: 'two', 3: 'three', 'ONE': 'one'}
>>> dictionary['ONE'] = dictionary.pop(1)
Traceback (most recent call last):
File "<input>", line 1, in <module>
KeyError: 1
dict[new_value] = dict.pop(old_value, some_default_value)
old_key
将与的位置不同new_key
。
如果要更改所有键:
d = {'x':1, 'y':2, 'z':3}
d1 = {'x':'a', 'y':'b', 'z':'c'}
In [10]: dict((d1[key], value) for (key, value) in d.items())
Out[10]: {'a': 1, 'b': 2, 'c': 3}
如果要更改单个键:可以采用上述任何建议。
{ d1[key] : value for key, value in d.items() }
在python 2.7及更高版本中,您可以使用字典理解:这是我在使用DictReader读取CSV时遇到的示例。用户已在所有列名后添加“:”
ori_dict = {'key1:' : 1, 'key2:' : 2, 'key3:' : 3}
摆脱键后面的“:”:
corrected_dict = { k.replace(':', ''): v for k, v in ori_dict.items() }
d = {1:2,3:4}
假设我们想将键更改为列表元素p = ['a','b']。以下代码将执行以下操作:
d=dict(zip(p,list(d.values())))
我们得到
{'a': 2, 'b': 4}
如果一次更改所有按键。在这里,我将阻止所有键。
a = {'making' : 1, 'jumping' : 2, 'climbing' : 1, 'running' : 2}
b = {ps.stem(w) : a[w] for w in a.keys()}
print(b)
>>> {'climb': 1, 'jump': 2, 'make': 1, 'run': 2} #output