How to Create and Print a Dictionary in Python


In this example we will show how to create and print a dictionary in Python.

Source Code

mydict = {
  'name': 'Steven',
  'age': 24,
  'ID': 123456
}
print(mydict)

Output:

{'name': 'Steven', 'age': 24, 'ID': 123456}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments