Our First Tkinter Program: a label and a window : Label « GUI Tk « Python
- Python
- GUI Tk
- Label
Our First Tkinter Program: a label and a window

from Tkinter import *
root = Tk()
w = Label(root, text="Hello, world!")
w.pack()
root.mainloop()
Related examples in the same category