I\'m starting to code in various projects using Python (including Django web development and Panda3D game development).
To help me understand what\'s going on, I wo
Python has a strong set of introspection features.
Take a look at the following built-in functions:
type() and dir() are particularly useful for inspecting the type of an object and its set of attributes, respectively.
type()
dir()