Python Dictionary Key/Value Swap
Posted 2023-03-03 21:55:48
0
11K
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'}
Buscar
Categorías
- Arts
- Business
- Computers
- Juegos
- Health
- Home
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Read More
How Do You Prioritize Tasks and Manage Dependencies? Critical Path, Sequencing, and Reprioritization Strategies
In any project, time is limited and tasks are interconnected. Knowing what to do first—and...
How Often Should Product Planning Happen?
Product planning is the strategic process of defining what a company should build, why it...
Life Of Brian (1979)
Born on the original Christmas in the stable next door to Jesus Christ, Brian of Nazareth spends...
What Is Analytics?
In today’s data-driven world, decision-making is no longer based solely on intuition or...
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...