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.00s 2012-02-12 20:02:08.592423. hosted by webfaction.