Python Dictionary Key/Value Swap
Postado 2023-03-03 21:55:48
0
13KB
You can change the keys and values in a dictionary using a loop and items(). This can be helpful if the key doesn't exist in the dictionary, but the value exist. Here's an example:
d = {'key1': 'val1', 'key2': 'val2', 'key3': 'val3'}
d_swap = {v: k for k, v in d.items()}
print(d_swap)
# {'val1': 'key1', 'val2': 'key2', 'val3': 'key3'}
Pesquisar
Categorias
- Arts
- Business
- Computers
- Jogos
- Health
- Início
- Kids and Teens
- Money
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Leia mais
Седьмая Печать. The Seventh Seal. (1957)
В середине XIV века рыцарь Антониус Блок и его оруженосец возвращаются после десяти лет крестовых...
Плата за страх. The Wages of Fear. (1953)
Четверо храбрецов, застрявших без денег в крошечном городишке где-то в сердце Латинской Америки,...
How Long Does an M&A Deal Typically Take to Complete?
Mergers and acquisitions (M&A) are among the most complex and influential decisions a company...
What Size Are Newspaper Ads?
When businesses consider newspaper advertising, one of the first—and most...
Индиана Джонс: В поисках утраченного ковчега. Indiana Jones and the Raiders of the Lost Ark. (1981)
Известный археолог и специалист по оккультным наукам доктор Джонс получает опасное задание от...