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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started