<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/python-beginner-en-qzsCL/1/5?curriculum_id=4f89dab3d788890003000096
<In what way does your code behave incorrectly? Include ALL error messages.>
Oops, try again. One of the following is missing or broken when we tried to use it: alice, lloyd, tyler, students, get_class_average, get_letter_grade
<What do you expect to happen instead?>
I have resolved it. I am just sharing to state that all these variable or functions need to be stated to pass the test. Putting in list form:
alice
lloyd
tyler
students
get_class_average
get_letter_grade
Most people will missed out the students variable as it has been removed after exercise 5
```pythonReplace this line with your code.
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]
}
Add your function below!
def average(numbers):
total=sum(numbers)
total=float(total)
avg=total/len(numbers)
return avg
def get_average(student):
homework=student[âhomeworkâ]
quizzes=student[âquizzesâ]
tests=student[âtestsâ]
grade=0.1average(homework)+0.3average(quizzes)+0.6*average(tests)
return grade
def get_letter_grade(score):
if score>=90:
return âAâ
elif score>=80:
return âBâ
elif score>=70:
return âCâ
elif score>=60:
return âDâ
else:
return âFâ
print get_letter_grade(get_average(lloyd))
students=[lloyd, alice, tyler]
def get_class_average(students):
for student in students:
total=0
total=+get_average(student)
return total
mean=total/len(students)
return mean
print get_class_average(students)
print get_letter_grade(get_class_average(students))
<do not remove the three backticks above>