“Замените ключ из словаря Python” Ответ

Изменить имя ключа DICT Python

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

Python изменит ключ в словаре

# Basic syntax:
# Approach 1:
dictionary[new_key] = dictionary[old_key]
del dictionary[old_key]

# Approach 2:
dictionary[new_key] = dictionary.pop(old_key)
Charles-Alexandre Roy

Питон заменить на словарь

address = "123 north anywhere street"

for word, initial in {"NORTH":"N", "SOUTH":"S" }.items():
    address = address.replace(word.lower(), initial)
print address
Shiny Seahorse

Замените ключ из словаря Python

a_dict = {"a": 1, "B": 2, "C": 3}

new_key = "A"
old_key = "a"
a_dict[new_key] = a_dict.pop(old_key)

print(a_dict)
OUTPUT
{'B': 2, 'C': 3, 'A': 1}
Jealous Jellyfish

Изменить ключ из словаря Python

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

Ответы похожие на “Замените ключ из словаря Python”

Вопросы похожие на “Замените ключ из словаря Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования