Answers for "from two elements create dictionaries python"

1

create dict from two lists

keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
Posted by: Guest on March-16-2021
-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 "from two elements create dictionaries python"

Python Answers by Framework

Browse Popular Code Answers by Language