See All Titles |
![]() ![]() pprintThe pprint (pretty printer) module prints Python objects so that the interpreter can use them as input for other operations. >>> import pprint >>> var = [(1,2,3),"Parrot"] >>> pprint.pprint(var) [(1,2,3),"Parrot"]
|
© 2002, O'Reilly & Associates, Inc. |