When debugging in PHP, I frequently find it useful to simply stick a var_dump() in my code to show me what a variable is, what its value is, and the same for anything that it contains.
What is a good Python equivalent for this?
|
When debugging in PHP, I frequently find it useful to simply stick a var_dump() in my code to show me what a variable is, what its value is, and the same for anything that it contains. What is a good Python equivalent for this? |
|||||||||
|
|
To display a value nicely, you can use the pprint module. The easiest way to dump all variables with it is to do
If you are running in CGI, a useful debugging feature is the cgitb module, which displays the value of local variables as part of the traceback. |
|||||
|
|
I think the best equivalent to PHP's var_dump($foo, $bar) is:
|
|||||||||||||||
|
|
PHP's var_export() usually shows a serialized version of the object that can be exec()'d to re-create the object. The closest thing to that in Python is repr() "For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval() [...]" |
|||||||||
|
|
The closest thing to php's
|
||||
|
|
|
So I have taken the answers from this question and another question and came up below. I suspect this is not pythonic enough for most people, but I really wanted something that let me get a deep representation of the values some unknown variable has. I would appreciate any suggestions about how I can improve this or achieve the same behavior easier.
Here is the usage
and the results.
|
|||
|
|
|
Good day. i have not php experience but i have understanding about python standart library. For your purposes python have a several methods: logging module; object serialization module which called pickle; You may write your own wrapper of pickle module. If your using |
||||
|
|
|
I use self-written Printer class, but dir() is also good for outputting the instance fields/values.
The sample of usage:
|
|||
|