print out dictionary python 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: python print dictionary line by line
# Iterate over key/value pairs in dict and print them
for key, value in student_score.items():
print(key, ' : ', value)