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