Question: 1 . Course information Write a program that creates a dictionary containing course numbers and the room numbers of the rooms where the courses meet.

1. Course information
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 keyvalue pairs:
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:
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:
The program should let the user enter a course number, then it should display the course's room number, instructor, and meeting time.
If the course is not in the dictionary, a message should be displayed. The program should contain a loop which continues to ask for course number until the user chooses to quit.
Sample Dialog:
```
Enter a course number or press enter to stop: absdfs
absdfs is an invalid course number.
Enter a course number or press enter to stop: CSl0l
The details for course CSlOl are:
Room: 3004
Instructor: Haynes
Time: 8:00 am
Enter a course number or press enter to stop:
>>>
```
Your programs should conform to the Programming Style Requirements as listed in Blackboard under Lab Assignments. You should have 1.py file to turn in.
1 . Course information Write a program that

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!