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
Business
What are standard operating procedures (SOPs)?
It was a simple process. Or at least, it was supposed to be. Each person completed it slightly...
By Dacey Rankins 2026-05-01 16:55:55 0 4K
Productivity
How to reduce subvocalization (reading in your head)?
Subvocalization is the "inner roommate" who insists on reading every word aloud in the theater...
By Michael Pokrovski 2026-05-09 20:06:40 0 7K
Science Fiction and Fantasy
Earwig and the Witch. (2021)
An orphan girl, Earwig, is adopted by a witch and comes home to a spooky house filled with...
By Leonard Pokrovski 2022-09-25 17:36:03 0 66K
Business
What Is a Sales Funnel and How Does It Work?
The sales funnel is one of the most important concepts in sales and marketing, yet it’s...
By Dacey Rankins 2025-12-19 19:17:32 0 7K
Science Fiction and Fantasy
Groundhog Day (1993)
A narcissistic, self-centered weatherman finds himself in a time loop on Groundhog Day, and the...
By Leonard Pokrovski 2023-06-24 20:18:36 0 42K

BigMoney.VIP Powered by Hosting Pokrov