The pprint module

This module is a “pretty printer” for Python data structures. It’s useful if you have to print non-trivial data structures to the console.

Example: Using the pprint module
# File: pprint-example-1.py

import pprint

data = (
    "this is a string", [1, 2, 3, 4], ("more tuples",
    1.0, 2.3, 4.5), "this is yet another string"
    )

pprint.pprint(data)

('this is a string',
 [1, 2, 3, 4],
 ('more tuples', 1.0, 2.3, 4.5),
 'this is yet another string')
 

[comment on/vote for this article]

A Django site. this page was rendered by a django application in 0.01s 2008-11-20 08:15:19.292233. hosted by webfaction.