ilteris kaplan blog

Archive of blog posts since 2005

April 5, 2008

Wiki

Code Python Divinginto

#wiki

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.

Continue Reading

Back to Archive