Assuming you have installed Python, you can open a [link url=http://python.about.com/od/programmingglossary/g/defshell.htm]terminal or shell prompt[/link]. With the terminal open, type 'python' and press the 'Enter' key. You will immediately be transported into the Python live intepreter; your screen will probably look similar to this:
al@osprey:~$ python
Python 2.4.1 (#2, Mar 30 2005, 21:51:10)
[GCC 3.3.5 (Debian 1:3.3.5-8ubuntu2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
Now you can enter your program keeping in mind one thing. Because everything is read in real-time, loops iterate immediately unless they are part of a function or class. So programming in the live environment takes some mental planning.

