Tag: pprint

Stop Using print() Every Time In Python — Use pprint() Instead

Enter our benevolent saviour pprint() pprint is built-in, so we don’t need to install anything. from pprint import pprint pprint(x) one simple from pprint import pprint line is needed it makes our messy data more human-readable it doesn’t require us to...