Question: Using the following Python code Create three dictionaries, with your class IDs as the keys. The values should be, Full Class Name, Section, and Instructor.
Using the following Python code
Create three dictionaries, with your class IDs as the keys. The values should be, Full Class Name, Section, and Instructor. When the user selects a class, Display all the class information
print ("These are my classes:")
class_list = {}
class_list1 = "1. CSC153" class_list2 = "2. CTI289" class_list3 = "3. CTS287" class_list4 = "4. DBA223" class_list5 = "5. WEB115" class_list6 = "6. Quit"
print (class_list1, class_list2, class_list3, class_list4, class_list5, class_list6)
print("Please select the class you would like more information on:")
After displaying the class information, show the menu again, until the user enters the number to end the program.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
