Python Dictionary Key/Value Swap
Posted 2023-03-03 21:55:48
0
12K
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'}
Site içinde arama yapın
Kategoriler
- Arts
- Business
- Computers
- Oyunlar
- Health
- Home
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Read More
Modern Times. (1936)
The Tramp struggles to live in modern industrial society with the help of a young homeless woman....
Which Platforms Are Best for Influencer Marketing in 2025? A Complete Comparison Guide
Introduction: Why Platform Choice Shapes Influencer Marketing Success
Influencer marketing has...
Anti-crisis manager: what is it's role in a crisis?
Anti-crisis manager: what is it's role in a crisis?
"I noticed the moment when...
Телеканал Сочи 24 прямой эфир.
СОЧИ24 - городской информационный телеканал с собственным программированием. В сетке вещания...
How Do I Plan and Execute Effective B2B Marketing Campaigns?
Business-to-business (B2B) marketing campaigns are a different beast compared to consumer-focused...