11 May 2016

Pretty print array, meaning that you print array, dictionary, object or any non string format in human-friendly way. This is great for terminal / command line. When you are looking for something for the web, I would suggest krumo.

Source code viewer
  1. from pprint import pprint
  2.  
  3. pprint(your_array)
Programming Language: Python