
Complete video lectures, notes, and source code.
from tkinter import *
root=Tk()# gui start
#widtgh x height
root.geometry("777x444")
root.minsize(200,100)
root.maxsize(1200,800)
root.title("GUI by Ashish")
root.config(bg="light green")
root.mainloop()#gui end