Mega Code Archive

 
Categories / Python / GUI Tk
 

Basic coding styles with labels

from Tkinter import Label                                widget = Label(None, text='Hello GUI world!')            widget.pack()                                            widget.mainloop()