Python Projects (GUI)
👉 You can download the full source code of all my Python GUI projects directly from my GitHub: sonalpriyanshi529/GUI-Projects 1. PYTHON SIGN IN CODE from tkinter import * from tkinter import ttk win=Tk() #windows size win.geometry( '240x200' ) win.resizable( 0 , 0 ) #creating label Name_Label=Label( text = 'Name' ) Name_Label.grid( column = 0 , row = 0 , sticky =W) Age_Label=Label( text = 'Age' ) Age_Label.grid( column = 0 , row = 2 , sticky =W) Email_Label=Label( text = 'Email' ) Email_Label.grid( column = 0 , row = 3 , sticky =W) Language_label=Label( text = 'Choose your Language' ) Language_label.grid( column = 0 , row = 4 , sticky =W) Genger_Label=Label( text = 'Who are you ?' ) Genger_Label.grid( column = 0 , row = 5 , sticky =W) #entry box and a storing variable class( StringVar() ) to store all the entries. Name_entry=StringVar() first=Entry( width = 16 , textvariable =Name_entry) first.grid( column = 1 , row = 0 ) first.focus() ...