Python Forum

Full Version: doubt
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
my question here

i am new user of python. could you please tell me how to run and compile it in my windows 32 bit?
Since python is an interpreter, it isn't compiled.
Do you have it installed?
if so, you can download an IDE, there are many choices.
I use and like PyCharm (community edition).
under settings, point to your python installation, then you can edit, run and debug python

you can also run a script from the command line using
'python ProgramName.py'
or you can run the interpreter in interactive mode by just typing python