Creating a Label : Label : Tkinker PYTHON TUTORIALS


PYTHON TUTORIALS » Tkinker » Label »

 

Creating a Label


Creating a Label
from Tkinter import *

root = Tk()

w = Label(root, text="Hello, Tk!")
w.pack()
root.mainloop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Tkinker
» Label