Python Forum
General Programming Question - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: General Programming Question (/thread-15347.html)



General Programming Question - Qui_Ten - Jan-14-2019

Let's say you program a simple calculator in Python (I haven't done it, it's just for the sake of an example)

1.- How do you turn such program into an .exe file to run?
2.- What program do you use to design the window, buttons and all that for the application?

It's just pure curiosity, I'd like to know more about it, but this kind of questions get deleted in Stack Overflow.


RE: General Programming Question - steve_shambles - Jan-14-2019

You can use Pyinstaller to make your Python source code into an .exe file.

To create a GUI you could use Tkinter which is built into Python,
there are many other GUI frameworks as well.

Google Pyinstaller and Tkinter for details.