Write a program that lets the user enter a course number (prompt) and then looks up and displays: the course number, the course room number, the course instructor, and the course meeting time. You must use the dictionary's get() method to retrieve the data from the dictionary. If the course number is invalid a message stating Course not found should be displayed. See the rubric on the assignment page for specific grading criteria. Create three dictionaries to store the course information. Each dictionary will use the same keys: - One to contain course numbers and the room numbers where the courses meet. The dictionary should have the following key-value pairs:
Course Number (key) CS101 CS102 CS103 NT110 CM241 Room Number (value) 3004 4501 6755 1244 1411 One to contain course numbers and the names of the instructors that teach each course. The dictionary should have the following key-value pairs: Course Number (key) CS101 CS102 CS103 NT110 CM241
Instructor (value) Haynes Alvarado Rich Burke Lee One to contain course numbers and the meeting times of each course. The dictionary should have the following key-value pairs: Course Number (key) CS101 CS102 CS103 NT110 CM241 Meeting Time (value) 8:00am 9:00am 10:00am 11:00am 11:00pm