For Windows users, you can run the interpreter in the command line if you have set the PATH variable appropriately. Alternatively, you can use the IDLE program. IDLE is short for Integrated DeveLopment Environment. Click on Start -> Programs -> Python 2.3 -> IDLE (Python GUI). Linux users can use IDLE too.
Note that the <<< signs are the prompt for entering Python statements.$ python
Python 2.3.4 (#1, Oct 26 2004, 16:42:40)
[GCC 3.4.2 20041017 (Red Hat 3.4.2-6.fc3)] on linux2
Type "help", "copyright", "credits" or "license" for more information. >>> print 'hello world'
hello world
>>>
Notice that Python gives you the output of the line immediately! What you just entered is a single Python statement. We useprint to (unsurprisingly) print any value that you supply to it. Here, we are supplying the textHello World and this is promptly printed to the screen.