Python: Print items of a dictionary line by line (4 Ways)

In this article, we will discuss different ways to print line by line the contents of a dictionary or a nested dictionary in python.

As dictionary contains items as key-value pairs. So, first, let’s create a dictionary that contains student names and their scores i.e.

# A dictionary of student names and their score
student_score = {   'Ritika': 5,
                    'Sam': 7, 
                    'John': 10, 
                    'Aadi': 8}

Now to print this dictionary, we directly pass it in the print function i.e.

print(student_score)

the output will be like,

{'Ritika': 5, 'Sam': 7, 'John': 10, 'Aadi': 8}

Although it printed the contents of the dictionary, all the key-value pairs printed in a single line. If we have big dictionaries, then it can be hard for us to understand the contents. Therefore, we should print a dictionary line by line. Let’s see how to do that,

Print a dictionary line by line using for loop & dict.items()

dict.items() returns an iterable view object of the dictionary that we can use to iterate over the contents of the dictionary, i.e. key-value pairs in the dictionary and print them line by line i.e.

# A dictionary of student names and their score
student_score = {   'Ritika': 5,
                    'Sam': 7, 
                    'John': 10, 
                    'Aadi': 8}

# Iterate over key/value pairs in dict and print them
for key, value in student_score.items():
    print(key, ' : ', value)

Output:

Ritika  :  5
Sam  :  7
John  :  10
Aadi  :  8

This approach gives us complete control over each key-value pair in the dictionary. We printed each key-value pair in a separate line.

Print a dictionary line by line by iterating over keys

We can iterate over the keys of a dictionary one by one, then for each key access its value and print in a separate line i.e.

# A dictionary of student names and their score
student_score = {   'Ritika': 5,
                    'Sam': 7, 
                    'John': 10, 
                    'Aadi': 8}

# Iterate over the keys in dictionary, access value & print line by line
for key in student_score:
    print(key, ' : ', student_score[key])

Output:

Ritika  :  5
Sam  :  7
John  :  10
Aadi  :  8

Although by this approach we printed all the key value pairs line by line this is not an efficient method as compared to the previous one because to access one key-value pair, we are performing two operations.

Print a dictionary line by line using List Comprehension

In a single line using list comprehension & dict.items(), we can print the contents of a dictionary line by line i.e.

# A dictionary of student names and their score
student_score = {   'Ritika': 5,
                    'Sam': 7, 
                    'John': 10, 
                    'Aadi': 8}

# Iterate over the key-value pairs of a dictionary 
# using list comprehension and print them
[print(key,':',value) for key, value in student_score.items()]

Output:

Ritika : 5
Sam : 7
John : 10
Aadi : 8

Print a dictionary line by line using json.dumps()

In python, json module provides a function json.dumps() to serialize the passed object to a json like string. We can pass the dictionary in json.dumps() to get a string that contains each key-value pair of dictionary in a separate line. Then we can print that string,

import json

# A dictionary of student names and their score
student_score = {   'Ritika': 5,
                    'Sam': 7, 
                    'John': 10, 
                    'Aadi': 8}

# Print contents of dict in json like format
print(json.dumps(student_score, indent=4))

Output

{
    "Ritika": 5,
    "Sam": 7,
    "John": 10,
    "Aadi": 8
}

We passed the dictionary object and count of indent spaces in json.dumps(). It returned a json like formatted string. Remember to import the json module for this approach.

Now, what if we have a nested python dictionary?

Printing nested dictionaries line by line in python

Suppose we have a nested dictionary that contains student names as key, and for values, it includes another dictionary of the subject and their scores in the corresponding subjects i.e.

# Nested dictionary containing student names and their scores in separate subjects
student_score = {   'Mathew': { 'Math': 28,
                                'Science': 18,
                                'Econimics': 15},
                    'Ritika': { 'Math': 19,
                                'Science': 20,
                                'Econimics': 19},
                    'John': {   'Math': 11,
                                'Science': 22,
                                'Econimics': 17}
                }

If print this dictionary by passing it to the print() function,

print(student_score)

Then the output will be like,

{'Mathew': {'Math': 28, 'Science': 18, 'Econimics': 15}, 'Ritika': {'Math': 19, 'Science': 20, 'Econimics': 19}, 'John': {'Math': 11, 'Science': 22, 'Econimics': 17}}  

It printed all the contents in a single line. Therefore, it is tough to understand the contents. Now to print the contents of a nested dictionary line by line, we need to do double iteration i.e.

# Nested dictionary containing student names and their scores in separate subjects
student_score = {   'Mathew': { 'Math': 28,
                                'Science': 18,
                                'Econimics': 15},
                    'Ritika': { 'Math': 19,
                                'Science': 20,
                                'Econimics': 19},
                    'John': {   'Math': 11,
                                'Science': 22,
                                'Econimics': 17}
                }

# Iterate over key / value pairs of parent dictionary
for key, value in student_score.items():
    print(key, '--')
    # Again iterate over the nested dictionary
    for subject, score in value.items():
        print(subject, ' : ', score)

Output:

Mathew --
Math  :  28
Science  :  18
Econimics  :  15
Ritika --
Math  :  19
Science  :  20
Econimics  :  19
John --
Math  :  11
Science  :  22
Econimics  :  17

We first iterated over the items, i.e. key/value pairs of the dictionary, and for each pair printed the key. As value field is another dictionary, so we again iterated over the key-value pairs in this dictionary and printed its contents i.e. key/value pairs in separate lines.

Print nested dictionary line by line using json.dumps()

We can do this in a single line using json module’s dumps() function i.e.

import json

# Nested dictionary containing student names and their scores in separate subjects
student_score = {   'Mathew': { 'Math': 28,
                                'Science': 18,
                                'Econimics': 15},
                    'Ritika': { 'Math': 19,
                                'Science': 20,
                                'Econimics': 19},
                    'John': {   'Math': 11,
                                'Science': 22,
                                'Econimics': 17}
                }


print(json.dumps(student_score, indent=4))

Output:

{
    "Mathew": {
        "Math": 28,
        "Science": 18,
        "Econimics": 15
    },
    "Ritika": {
        "Math": 19,
        "Science": 20,
        "Econimics": 19
    },
    "John": {
        "Math": 11,
        "Science": 22,
        "Econimics": 17
    }
}

5 thoughts on “Python: Print items of a dictionary line by line (4 Ways)”

  1. Pingback: What is a dictionary in python and why do we need it? – thispointer.com

  2. Very useful information.Well explained.Easy to understand for beginners.How the code works is explained too. Thanks a lot.

Leave a Reply to dreamy Cancel Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top