Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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)
- total = total / len(numbers)
- return total
- def get_average(lloyd):
- homework = average(lloyd['homework'])
- quizzes = average(lloyd['quizzes'])
- tests = average(lloyd['tests'])
- return (homework * 0.1) + (quizzes * 0.3) + (tests * 0.6)
- def get_letter_grade(score):
- if score >= 90:
- return "A"
- if score >= 80:
- return "B"
- if score >= 70:
- return "C"
- if score >= 60:
- return "D"
- else:
- return "F"
- students = [lloyd, tyler, alice]
- def get_class_average(students):
- results = []
- for student in students:
- results += get_average(student)
- class_average = results / len(students)
- return class_average
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement