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(Key) Room Number(value) CS101 3004 CS102 4501 CS103 6755 NT110 1244 CM241 1411 The program should

Respuesta :

Python dictionaries are used to hold data in keys and value pairs.

The program that creates the dictionary in Python, is as follows:

dict={"CS101":3004,"CS102":4501,"CS103":6755,"NT110":1244,"CM241":1411}

The above program creates a dictionary named dict.

The dictionary is then initialized with the given data values.

Note that the program has no output

Read more about Python dictionaries at:

https://brainly.com/question/15872044

ACCESS MORE
EDU ACCESS