Posts

Showing posts from September, 2024

Tkinter lecture no 1(to create a window)

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