Question: We already have the following course data: IT1230 - Neda Asl IT1130 - Russell Thackston IT1430 - Kristen Hawkins Based on the above data, create

We already have the following course data: IT1230 - Neda Asl IT1130 - Russell Thackston IT1430 - Kristen Hawkins Based on the above data, create a dictionary to store the course names as keys and instructors name as values, and print it out. When you run your program, it should read a course name and instructor name from the cm, and determine if that course is already being taught or not. If it is not, you should add the new course and the instructor to the dictionary, sort it by value in ascending order, and print out the updated dictionary. The sample output is shown below. You cannot print the above name list manually (supposing you have 100+ names in the dataset). For each course, there is only one instructor. And each instructor can only teach one course. H:\>python C:\Users aslsabbaghpourhokma Documents\IT2431\Examl\test1-1.py IT1238 "Neda Asl" Welcome to the course query. Here is the original courses information: IT1230 => Neda Asl IT1130 => Russell Thackston IT1430 => Kristen Hawkins The entered course (IT1238) is being taught by Neda Asl H:>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Examl\test1-1.py IT2430 "Atef Mohamed" Welcome to the course query. Here is the original courses information: IT1230 => Neda Asl IT1130 => Russell Thackston IT1430 => Kristen Hawkins The entered course does not exist in our database. It is added now The updated and sorted database is: IT2430 => Atef Mohamed IT1430 => Kristen Hawkins IT1230 => Neda Asl IT1130 => Russell Thackston
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
