Tkinter lecture no 1(to create a window)

from tkinter import *
window = Tk()
inp = Label(window, text="hello world")
inp.pack()
window.mainloop()

Comments

Popular posts from this blog

YouTube clone without api