0
votes
Is there a function in Python to print all the current properties and values of an object?
In most cases, using __dict__ or dir() will get you the info you're wanting. If you should happen to need more details, the standard library includes the inspect …
