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
from pprint import pprint pprint(your_array)Programming Language: Python