Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PYTHON HELP! Write a program that creates a dictionary containing course numbers and the room numbers of the rooms where the courses meet. The dictionary
PYTHON HELP!
Write a program that creates a dictionary containing course numbers and the room numbers of the rooms where the courses meet. The dictionary should have the following key-value pairs Course Number MIS2343 MIS3335 MIS3321 MIS4380 MIS3328 Room Number (value) 308 310 206 302 302 The program should also create a dictionary containing course numbers and the names of the instructors that teach each course. The dictionary should have the following key-value pairs Course Number (ke MIS2343 MIS333.5 MIS3321 MIS4380 MIS3328 Instructor (value) Smith Ellis McMurtrey Ellis Bartczak The program should also create a dictionary containing course numbers and the meeting times of each course. The dictionary should have the following key-value pairs Course Number MIS2343 MIS333.5 MIS3321 MIS4380 MIS3328 Meeting Time (value MWF 11:00 am TR 10:50 am MW 12:00 pm TR 2:40 pm TR 10:50 am The program should let the user enter a course number, and then it should display the course's room number, instructor, and meeting time or an error message if the course does not appear in the dictionary . Example input and output is shown belowStep 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