Question #252364

Create a Python dictionary that returns a list of values for each key. The key can be whatever type you want.

Design the dictionary so that it could be useful for something meaningful to you. Create at least three different items in it. Invent the dictionary yourself. Do not copy the design or items from some other source.

.

Expert's answer

dict1= {
  "COM001": "John",
  "COM002": "Mary",
  "COM003": "Joseph",
  "COM004": "Joan",
  "COM005": "Anne"
}


print(dict1)


Output


LATEST TUTORIALS
APPROVED BY CLIENTS