Question: course _ dict is a dictionary with courses' name and grade pairs. A new course is read from input and added into course _ dict.

course_dict is a dictionary with courses' name and grade pairs. A new course is read from input and added into course_dict. For each course in course_dict, output the course's name, followed by "'s grade: ", and the course's grade. course_dict ={
'Databases': 'B-',
'Ethics': 'C-',
'Financial Accounting': 'C',
'Calculus': 'D',
'Business Analytics': 'A-'
}
course_name = input()
course_grade = input()
course_dict[course_name]= course_grade
''' Your code goes here '''

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!