I want to combine these:
keys = ['name', 'age', 'food'] values = ['Monty', 42, 'spam']
into a single dictionary:
{'name': 'Monty', 'age': 42, 'food': 'spam'}
How can I do this?
← Назад к списку