Python Dictionary Key/Value Swap
Posted 2023-03-03 21:55:48
0
14K
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'}
Search
Categories
- Arts
- Business
- Computers
- Games
- Health
- Home
- Kids and Teens
- Money
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Read More
How to build a reading habit?
How to Build a Reading Habit?
A reading habit is often treated like a personality trait.
People...
How Do Recruitment Agencies Work?
Recruitment agencies play a critical role in connecting employers with suitable candidates....
20 Customer Feedback Questions: A Curated List to Understand Customer Needs and Improve User Experience
Gathering customer feedback is essential for any business aiming to improve products, services,...
Windows OS will be transferred to the "cloud"
Microsoft has planned to completely transfer the Windows operating system (OS) to the "cloud"...
CBN News The Christian Perspective. Live TV. USA.
Stay informed on world breaking news from a Christian perspective - CBN News brings you...