Using a Python environment of your choice –
Create the following three dictionaries: Gary,
Alice, and Tyler
Gary = {
"name": "Gary",
"homework": [90.0,97.0,75.0,92.0],
"quizzes": [88.0,40.0,94.0],
"tests": [75.0,90.0]
}
Alice = {
"name": "Alice",
"homework": [100.0, 92.0, 98.0,
100.0],
"quizzes": [82.0, 83.0, 91.0],
"tests": [89.0, 97.0]
}
Tyler = {
"name": "Tyler",
"homework": [0.0, 87.0, 75.0,
22.0],
"quizzes": [0.0, 75.0, 78.0],
"tests": [100.0, 100.0]
}
Insert one additional (new) dictionary of your
choice
Create a new list named students that...