Need help with Python

I am very new to Python, I need some way of compiling .py files into .exe, or simply run the .py like an executable.
Thanks
-Scout

why would you do this? Unless you have a very good reason, but in most cases you just want to run your .py script through a python interpreter.

2 Likes

Sorry for the insanely late reply, but the reason I would do that, is so I can run the code on computers that do not have a Python interpreter, pretty much just to finalize my project and make it a run-able application on all Windows machines.

you would need to create an executable:

1 Like