📜  替换字典python代码示例的键

📅  最后修改于: 2022-03-11 14:46:15.158000             🧑  作者: Mango

代码示例5
>>> 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 "", line 1, in 
KeyError: 1