pprint | Python Standard Library – Real Python

The Python pprint module provides the capability to pretty-print data structures in a readable and easy-to-understand way. This module is particularly useful for displaying complex data structures in a human-friendly format and for visualizing nested lists, dictionaries, and other objects.

Here’s a quick example:

Key Features

  • Formats data structures to be more readable
  • Supports nested data structures
  • Configurable depth and width for output

Frequently Used Classes and Functions

Examples

Use pprint.pformat() to get a pretty-printed string:

Customize output with PrettyPrinter:

Common Use Cases

  • Displaying complex data structures for debugging purposes
  • Logging structured data in a readable format
  • Formatting output for reports or presentations

Real-World Example

Suppose you have a deeply nested dictionary and you want to log it in a readable format for debugging:

In this example, pprint() displays a nested configuration dictionary in a structured and readable format, making it easier to understand the configuration details at a glance.

Tutorial

Prettify Your Data Structures With Pretty Print in Python

The pprint module, Python's data pretty printer, is a useful part of the standard library. You can work with it for debugging data structures and increasing the readability of your output. In this tutorial, you'll find that pprint is both straightforward to use and also highly customizable.

intermediate python

For additional information on related topics, take a look at the following resources: