Answers for "python create dict with two list"

23

create dictionary python from two lists

>>> keys = ['a', 'b', 'c']
>>> values = [1, 2, 3]
>>> dictionary = dict(zip(keys, values))
>>> print(dictionary)
{'a': 1, 'b': 2, 'c': 3}
Posted by: Guest on May-21-2020
-2

how to create multiple dictionaries in python

import string
for name in ["lloyd", "alice", "tyler"]:
    name = {"name": string.capitalize(name), "homework": [], "quizzes": [], "tests": []}
Posted by: Guest on October-22-2020

Code answers related to "python create dict with two list"

Python Answers by Framework

Browse Popular Code Answers by Language