0
Guys does python have a compiller and how do I put my code on real life
2 Answers
+ 3
You can make your .py files executable by wrapping (or freezing) them into .exe
You can use py2exe, cx_freeze or nuitka modules for it. Just remember that since Python is an interpreted, not compiled language, in fact those files will carry the interpreter itself and all the modules you imported. Those combined can be a bit heavy (~20-40MB).
+ 2
On windows you must download, linux or osx just type python in the terminal and the filename.