Python Dictionary Key/Value Swap
Posted 2023-03-03 21:55:48
0
13K
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'}
Buscar
Categorías
- Arts
- Business
- Computers
- Juegos
- Health
- Home
- Kids and Teens
- Money
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Read More
Psychosis: Medical Conditions
A very large number of medical conditions can cause psychosis, sometimes called secondary...
How Does Feedback (e.g., Win/Loss Data) Influence Your Roadmap?
When building and marketing products, success depends on more than vision—it requires...
How to Improve Your Credit Score & How to Check It: A Practical Guide to Credit Health
How to Improve Your Credit Score & How to Check It: A Practical Guide to Credit Health
Your...
Understanding Data Formats: A Comprehensive Overview
In the world of technology and data management, data formats play a crucial role. They define how...
Why Is Community Building Important?
In today’s digital-first and interconnected world, community building has become one of the...