Python Dictionary Key/Value Swap
نشر بتاريخ 2023-03-03 21:55:48
0
12كيلو بايت
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'}
البحث
الأقسام
- Arts
- Business
- Computers
- الألعاب
- Health
- الرئيسية
- Kids and Teens
- مال
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
إقرأ المزيد
Saving Private Ryan. (1998)
Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a...
UN press briefings. Live TV. USA.
The UN Web TV Channel is available 24 hours a day with selected live programming of United...
How Frequently Should I Post to Maximize Engagement and Growth?
One of the most common questions new content creators ask is how often they should post to see...
Problems of working with personnel at enterprises and how to solve them
The success of the company depends on employees. An increasing number of managers are aware of...
How Do We Differentiate Our Brand in a Crowded B2B Market?
The B2B market is more competitive than ever. With new entrants, commoditization of technology,...