Basic coding styles with labels : Label « GUI Tk « Python
- Python
- GUI Tk
- Label
Basic coding styles with labels

from Tkinter import Label
widget = Label(None, text='Hello GUI world!')
widget.pack()
widget.mainloop()
Related examples in the same category