python print from dictionary code example

Example 1: printing dictionary in python

mydict = {'score1': 41,'score2': 23}
mydict['score3'] = 45

# key value pairs
for i in mydict:
    print(i,mydict[i])

Example 2: dicts python

thisdict =	{
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
x = thisdict["model"]
print(x)
---------------------------------------------------------------------------
Mustang

Example 3: dictionary in python

Dict = {"name": 'Izhaan', "salary": 1234, "age": 23} 
print("\nDictionary with the use of string Keys: ") 
print(Dict)