“Zmodyfikuj Nazwę Key Python” Kod odpowiedzi

Zmodyfikuj Nazwę Key Python

a_dict[new_key] = a_dict.pop(old_key)
Evil Emu

Zmień klucz Python Słownika

>>> 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
Strange Salamander

Odpowiedzi podobne do “Zmodyfikuj Nazwę Key Python”

Pytania podobne do “Zmodyfikuj Nazwę Key Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu