Using the Dictionaries concepts discussed in class, complete the task under the 4 bullets: Write a program that creates
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Using the Dictionaries concepts discussed in class, complete the task under the 4 bullets: Write a program that creates
Using the Dictionaries concepts discussed in class, complete thetask under the 4 bullets: Write a program that creates a dictionarycontaining course numbers and the room numbers of the rooms wherethe courses meet. The dictionary should have the followingkey-value pairs: Course Number (key) Room Number (value) ITP1003004 ITN101 4501 CSC110 6755 ITN106 1244 ITN107 1411 Create anotherdictionary containing course numbers and the names of theinstructors that teach each course. The dictionary should have thefollowing key-value pairs: Course Number (key) Instructor (value)ITP100 Addy ITN101 Carter CSC110 Rich ITN106 Burke ITN107 LeeCreate a third dictionary containing course numbers and the meetingtimes of each course. The dictionary should have the followingkey-value pairs: Course Number (key) Meeting Time (value) ITP1008:00 a.m. ITN101 9:00 a.m. CSC110 10:00 a.m. ITN106 11:00 a.m.ITN107 1:00 p.m. The program should ask the user to enter a coursenumber, then it should display the course’s room number,instructor, and meeting time. NEED PYTHON CODE PLZ HELP Wronganswer last time please help