to create a label the code is:
==========================================================
from tkinter import *
root = Tk()
label = Label(root, text="Label")
label.pack()
root.mainloop
label = variable
to create a label the code is:
==========================================================
from tkinter import *
root = Tk()
label = Label(root, text="Label")
label.pack()
root.mainloop
label = variable
No comments:
Post a Comment