{"id":39,"description":"Python: pretty print python data structures","tags":["python","programming"],"contents":["# pprint module provides a way to pretty print arbitrary","# data structures including the built in data types.","import pprint","pprint.print(mydict)","# pprint.print defaults to 80 columns per line.","# depth and indent level can be adjusted too"]}
