Thread: Compiler
View Single Post
Old May 26th, 2006, 4:08 PM   #2
Arevos
Programming Guru
 
Arevos's Avatar
 
Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 5 Arevos is on a distinguished road
Python works by compiling code into a custom, platform-independant bytecode format on the fly, then executing this. In practise, this means you just download Python and install it, write your script as a text file, save it with the ".py" extension, and then double-click to run.
Arevos is offline   Reply With Quote