Python Dictionary Key/Value Swap
Posted 2023-03-03 21:55:48
0
9K
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
Python UnicodeError
In Python, Unicode standards have two types of error: Unicode encodes error and Unicode decode...
What Are the Requirements to Join Monetization Programs Like the YouTube Partner Program?
In today's digital age, content creators are constantly looking for ways to monetize their...
Tailwind CSS Vs Bootstrap
CSS (Cascading Style Sheets) is a stylesheet language used to style the HTML elements in a...
Schizophrenia Risk Factors: Environmental and Substance Use
EnvironmentalEnvironmental factors, each associated with a slight risk of developing...
First Item on the Agenda: Is This Meeting a Waste of Time?
We’ve all been there: sitting in a conference room or on a video call, wondering why...