Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
336 views
in Technique[技术] by (71.8m points)

python - 是否有内置功能可以打印对象的所有当前属性和值?(Is there a built-in function to print all the current properties and values of an object?)

So what I'm looking for here is something like PHP's print_r function.

(所以我在这里寻找的是类似PHP的print_r函数。)

This is so I can debug my scripts by seeing what's the state of the object in question.

(这样一来,我可以通过查看问题对象的状态来调试脚本。)

  ask by fuentesjr translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You want vars() mixed with pprint() :

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

from pprint import pprint
pprint(vars(your_object))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...