in python please
Posted: Sun May 15, 2022 12:52 pm
in python please
Complete the following program to make it output a list of student IDs with each student's last grade as shown in the expected output. 2 3 students = { 6422771001': ['A', 'B+', 'B', 'C', 'A'l, 6422771002': ['B', 'B+', 'B', 'C'], 6422771003': ['C+', 'C', 'D', 'A', 'D'), 6422771004': ['D', 'A', 'B', 'C'] } 4 5 6 7 s # Expected output - # 6422771001 A 10 # 6422771002 C 11 # 6422771003 D 12 # 6422771004 C 13 14
Complete the following program to make it output a list of student IDs with each student's last grade as shown in the expected output. 2 3 students = { 6422771001': ['A', 'B+', 'B', 'C', 'A'l, 6422771002': ['B', 'B+', 'B', 'C'], 6422771003': ['C+', 'C', 'D', 'A', 'D'), 6422771004': ['D', 'A', 'B', 'C'] } 4 5 6 7 s # Expected output - # 6422771001 A 10 # 6422771002 C 11 # 6422771003 D 12 # 6422771004 C 13 14