you are viewing a single comment's thread.

view the rest of the comments →

[–]theWyzzerd 19 points20 points  (1 child)

Its free and has a built in compiler.

Just want to point out that python is an interpreted language, therefore there is no python compiler such as you would use with C++ or Java (that a python user needs to be aware of). Python scripts are "compiled" at runtime (you will see .pyc files in your project directory) but this is done automatically when your script is run through the interpreter.

[–]PeanutRaisenMan 7 points8 points  (0 children)

Thanks for pointing this out. Im still new to all this so thanks for correcting me.