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
Жизненные вопросы
Развод Надера и Симин. A Separation. (2011)
Супруги Надер и Симин решили уехать из Ирана в поисках лучшей жизни. Но в один момент Надер...
By Nikolai Pokryshkin 2023-01-27 17:42:01 0 32K
Decision Making and Problem Solving
Why is creativity important in education?
Why Is Creativity Important in Education? The Answer Is Not Always the Most Important Thing A...
By Michael Pokrovski 2026-06-11 20:00:53 0 2K
Business
Why Do You Want to Work Here? Understanding a Candidate’s Motivation and Alignment
The question "Why do you want to work here?" is a staple in job interviews. It may sound simple,...
By Dacey Rankins 2025-06-25 12:41:52 0 8K
Business
How Do I Manage Stress as a Startup Founder?
Being a startup founder is often thrilling and rewarding, but it can also come with a significant...
By Dacey Rankins 2025-04-09 13:50:31 0 13K
Business
How Do PMs Work With Customers, Stakeholders, and Engineering Teams?
The role of a product manager (PM) can often seem ambiguous to those outside the field. Unlike...
By Dacey Rankins 2025-08-18 13:27:56 0 13K

BigMoney.VIP Powered by Hosting Pokrov