Python Dictionary Key/Value Swap

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
Read More
Социальные проблемы
Мистер Смит едет в Вашингтон. Mr. Smith Goes to Washington. (1939)
Наивный идеалист Джефферсон Смит, лидер организации бойскаутов, назначен представителем в сенат....
By Nikolai Pokryshkin 2023-04-03 12:48:59 0 47K
Economics
What is portfolio diversification?
What Is Portfolio Diversification? The Most Expensive Lesson Investors Keep Relearning I have...
By Leonard Pokrovski 2026-06-11 03:45:16 0 876
Law
The Interplay of Society and Law: Navigating the Complex Dynamics
In the intricate dance between society and law, each step influences the other, shaping the...
By Dacey Rankins 2024-06-10 19:55:49 0 16K
Personal Finance
How Salary Is Calculated: A Practical Guide to Hourly Pay, Salaried Pay, Overtime, and Job Classification
How Salary Is Calculated: A Practical Guide to Hourly Pay, Salaried Pay, Overtime, and Job...
By Leonard Pokrovski 2025-11-28 21:18:04 0 9K
Business
How Do Online Memberships Work? The Business Model Built on Ongoing Value
At first glance, online memberships seem deceptively simple. A person joins. A payment is...
By Dacey Rankins 2026-06-23 21:41:57 0 939

BigMoney.VIP Powered by Hosting Pokrov