Guide to Python introspection
Introspection reveals useful information about your program's objects. Python, a dynamic, object-oriented programming language, provides tremendous introspection support. This article covers its capabilities, including python's on-line help utility, the sys module, the keyword module, the dir() function, documentation strings, interrogating python objects, and interrogation time.
