1import tkinter
2
3window = tkinter.Tk() # creating the window object
4window.title('my first GUI program')
5window.minsize(width=600, height=500)
6
7# label
8# adding text to the middle of the window
9my_label = tkinter.Label(text='I am a Label')
10my_label.pack()
11
12window.mainloop() # keeping the window until we close it