So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
|
1
|
|
|
|
|
|
You are really mixing together two different things. Use
Print that dictionary however fancy you like:
or
|
|||
|
|
|
||||||||||
|
|
|
dir has been mentioned, but that'll only give you the attributes' names. If you want their values as well try __dict__.
>>> o.__dict__ {'value': 3} |
||
|
|
You can use the "dir()" function to do this.
Another useful feature is help.
|
|||
|
|
You want vars():
|
||
|
|
To print the current state of the object you might:
or
or
For your classes define
|
||
|
|
In most cases, using
If you're just looking for "what attribute values does my object have?", then |
||
|
|
A metaprogramming example Dump object with magic: $ cat dump.py
Without arguments: $ python dump.py
With Gnosis Utils: $ python dump.py gnosis.magic MetaXMLPickler
It is a bit outdated but still working. |
|||
