Home / Python Dictionary / How to Print Dictionary Values One By One in Python In this example we will show how to print dictionary values one by one in Python. Source Code mydict = { 'name': 'Steven', 'age': 24, 'ID': 123456 } for x in mydict: print(mydict[x]) Output: Steven 24 123456