是否有内置函数来打印对象的所有当前属性和值?

所以我在这里寻找的是像PHP的print_r函数这样的东西。

这样我就可以通过查看相关对象的状态来调试脚本。


答案 1

您想要混合:vars()pprint()

from pprint import pprint
pprint(vars(your_object))

答案 2

你真的把两件不同的事情混合在一起。

使用dir()vars()exinsible模块来获取您感兴趣的内容(我用作示例;您可以使用任何对象)。__builtins__

>>> l = dir(__builtins__)
>>> d = __builtins__.__dict__

打印该词典,无论您喜欢什么:

>>> print l
['ArithmeticError', 'AssertionError', 'AttributeError',...

>>> from pprint import pprint
>>> pprint(l)
['ArithmeticError',
 'AssertionError',
 'AttributeError',
 'BaseException',
 'DeprecationWarning',
...

>>> pprint(d, indent=2)
{ 'ArithmeticError': <type 'exceptions.ArithmeticError'>,
  'AssertionError': <type 'exceptions.AssertionError'>,
  'AttributeError': <type 'exceptions.AttributeError'>,
...
  '_': [ 'ArithmeticError',
         'AssertionError',
         'AttributeError',
         'BaseException',
         'DeprecationWarning',
...

漂亮的打印也可以在交互式调试器中作为命令使用:

(Pdb) pp vars()
{'__builtins__': {'ArithmeticError': <type 'exceptions.ArithmeticError'>,
                  'AssertionError': <type 'exceptions.AssertionError'>,
                  'AttributeError': <type 'exceptions.AttributeError'>,
                  'BaseException': <type 'exceptions.BaseException'>,
                  'BufferError': <type 'exceptions.BufferError'>,
                  ...
                  'zip': <built-in function zip>},
 '__file__': 'pass.py',
 '__name__': '__main__'}