Python Dictionary Key/Value Swap
Postado 2023-03-03 21:55:48
0
6KB
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
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Leia mais
Doctors create a database of DNA residents of New York: why is it necessary
This week, Mount Sinai Health System began work to create an extensive database of patients'...
Limited Partnership
A limited partnership (LP) is a form of business partnership in which one or more general...
JavaScript Async Functions
Async functions can contain zero or more await expressions. Await expressions make...
Business in Agriculture and Forestry: A Growing Sector
Introduction
Agriculture and forestry are vital components of the global economy, providing...
The tradeoff between economic output and environmental protection
Key points
Depending on their income levels and political preferences, different...