Is there a way to view the source code of a function, class, or module from the python interpreter? (in addition to using help to view the docs and dir to view the attributes/methods)
feedback
|
| |||
feedback
|
|
If you plan to use python interactively it is hard to beat ipython. To print the source of any known function you can then use
The output is even colorized. You can also directly invoke your
| |||||||||
feedback
|