Python project
from tkinter import * app=Tk() h=app.winfo_screenheight() w=app.winfo_screenwidth() app.configure(height=h,width= w,bg="lightgreen") app.title("Employee Registration") frm = Frame(app,height="565",width=" 450",bg="violet") frm.place(x=60,y=65) frm = Frame(app,height="145",width=" 400",bg="violet") frm.place(x=600,y=70) l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg= "lightgreen",fg="black",width= 23) l1.place(x=500,y=20) l2=Label(app,text="Employee ID",fg="black",bg="white", font=("verdana",15,"bold"), anchor="w") l2.place(x=200,y=100) e2=Entry(app,font=("verdana", 15,"bold"),width="20",fg=" tomato") e2.place(x=150,y=150) l3=Label(app,text="Employee Name",fg="black",bg="white", font=("verdana"...