Python Dictionary Key/Value Swap
Δημοσιευμένα 2023-03-03 21:55:48
0
13χλμ.
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
- Money
- News
- Personal Development
- Recreation
- Regional
- Reference
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Личное развитие
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Διαβάζω περισσότερα
What Are the Best Sales Management Strategies?
Sales management strategies define how a company turns effort into revenue. Without clear...
What Are the Benefits of Fintech?
What Are the Benefits of Fintech?
Why Users and Businesses Are Adopting Faster, Cheaper, and...
По соображениям совести. Hacksaw Ridge. (2016)
Медик американской армии времён Второй мировой войны Десмонд Досс, который служил во время битвы...
What Are the Common Mistakes in Business Planning?
Many look for pitfalls to avoid while drafting their plans. Business planning is a critical part...
How Do You Build a Successful Sales Team?
Building a successful sales team is one of the most valuable and challenging tasks in business....