更改字典中键的名称

更改字典中键的名称,第1张

更改字典中键的名称

只需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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5630603.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存