Or is there a better way to quickly output the contents of an array (multidimensional or what not). Thanks.
|
|
The python print statement does a good job of formatting multidimesion arrays without requiring the print_r available in php. As the definition for print states that each object is converted to a string, and as simple arrays print a '[' followed by a comma separated list of object values followed by a ']', this will work for any depth and shape of arrays. For example
If you need more advanced formatting than this, AJs answer suggesting pprint is probably the way to go. |
||||
|
|
|
Check out pprint module. |
|||
|
|
|
|
||||
|
|
|
there is print_r for python https://github.com/marcbelmont/python-print_r/wiki but it is better to use standard modules |
||||
|
|
|
I've wrote my own very simple variable dumper that can also pretty print more complex data structures in very similar way of what php print_r does mpr-python. Maybe someone will find it useful. |
||||
|
|
|
You were looking for the
|
|||
|
|