Reputation: 5
I am a beginner programmer and I've been programming for about 2 months now. It crossed my mind that most courses and tutorials teach python by creating small apps in a python terminal or shell or something. Is it possible to create a windowed application in python without using any libraries or frameworks other than the ones that come with python?
Thanks in advance
Upvotes: 0
Views: 1780
Reputation: 275
The tkinter package (“Tk interface”) is the standard Python interface to the Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, as well as on Windows systems.
https://docs.python.org/3.4/library/tkinter.html
Upvotes: 1