python two dictionary code example
Example 1: merge two dict python 3
z = {**x, **y}
Example 2: how to create multiple dictionaries in python
import string
for name in ["lloyd", "alice", "tyler"]:
name = {"name": string.capitalize(name), "homework": [], "quizzes": [], "tests": []}