Q:

printing dictionary in python

#print keys and values from the dictionary

for k, v in dic.items():
  print(k, v)
4
#title			: Dictionary Example
#author         : Joyiscold
#date           : 2020-02-01
#====================================================

thisdict = {
	"brand": "Ford",
 	"model": "Mustang",
 	"year": 1964
}

#Assigning a value
thisdict["year"] = 2018
10
mydict = {'score1': 41,'score2': 23}
mydict['score3'] = 45

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

  for x, y in thisdict.items():
  print(x, y) 
0

New to Communities?

Join the community