4. For the record

lloyd = {
“name”: “Lloyd”,
“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]
}
students = { [lloyd, alice, tyler]
“lloyd”: [“homework, quizzes, tests”]
“alice”: [“homework, quizzes, tests”]
“tyler”: [“homework, quizzes, tests”]
}

Error:
Your code looks a bit off–it threw a “invalid syntax (python, line 20)” error. Feel free to peek back at earlier exercises if you need a syntax refresher!
Run
Solution

That code looks quite unusual. The valid part of it is,

students =  [lloyd, alice, tyler]

All the other attributes are in the dictionaries.