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
Smoking Barrels. (1998)
Eddy persuades his three pals to pool money for a vital poker game against a powerful local...
Situational Leadership: The Art of Agile Management for Maximum Efficiency
Situational Leadership: The Art of Agile Management for Maximum Efficiency...
Business Trends and Ideas: Navigating the Future of Small Businesses in 2024
As we move into 2024, small businesses continue to evolve in response to shifting consumer...
What Industries Use On-Demand Models?
The most revealing business innovations often hide in plain sight.
You request a ride from your...
Python Assert
The assert keyword is used when debugging code.
The assert keyword lets you...