Python objects speak for themselves
One reason Python is so usable is that you can find out precisely how anything works.
We’ll see how to find out how to use any module, even if it’s not documented.
Then we’ll use ast
and dis
to minutely examine exactly how Python executes a very small program.