Loading...

Python GUI Masterclass

Complete video lectures, notes, and source code.

Lecture 1: Basic of GUI

Source Code

Python
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 

Class Notes

Basics of Python GUI development.

Open PDF