(In Python 3) Assume a dictionary with some values: students = { 'STUD101': ['Carl', 88.5, 98.5, 78, 85, 92.5], 'STUD102': ['Dana', 98,91,90,92,88], 'STUD103': ['Jill', 99.5, 98.5, 96, 96, 89.5], } To access, a specific row, you would use students[key][column_number]. students['STUD101'][0] would print 'Carl' students['STUD101'][1] would print 88.5 and so on.. Write a program that defines a function that takes a dict as an argument, adds the scores of each student, calculate average for each student, and display them. Your program should: Define a function display_average(students) that takes in a dictionary as an argument. Display the original dictionary. Calculate and display the average of each student. You do not need to ask user for input. You can use your own dictionary with at-least 5 rows. HINTS: While iterating through the loop, you can add the student total for each row to a separate temporary list to use it later. You can use list.append() to add values to a temporary list.
(In Python 3)
Assume a dictionary with some values:
students = { 'STUD101': ['Carl', 88.5, 98.5, 78, 85, 92.5], 'STUD102': ['Dana', 98,91,90,92,88], 'STUD103': ['Jill', 99.5, 98.5, 96, 96, 89.5], }
To access, a specific row, you would use students[key][column_number].
- students['STUD101'][0] would print 'Carl'
- students['STUD101'][1] would print 88.5
and so on..
Write a program that defines a function that takes a dict as an argument, adds the scores of each student, calculate average for each student, and display them.
Your program should:
-
Define a function display_average(students) that takes in a dictionary as an argument. Display the original dictionary. Calculate and display the average of each student.
-
You do not need to ask user for input. You can use your own dictionary with at-least 5 rows.
HINTS:
- While iterating through the loop, you can add the student total for each row to a separate temporary list to use it later. You can use list.append() to add values to a temporary list.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images