T H E W A L K

Systems Architect, Engineering, Narrative.

Back to main

Code Python Divinginto

The Interactive Shell

type python and you are welcome to interactive shell. It’s like this: Python leads a double life. It’s an interpreter for scripts that you can run from the command line or run like applications, by double-clicking the scripts. But it’s also an interactive shell that can evaluate arbitrary statements and expressions. This is extremely useful for debugging, quick hacking, and testing.

Back to main