Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. from tkinter import*
  2.  
  3. mgui=Tk()
  4.  
  5. mgui.geometry("300x350+100+100")
  6. mgui.title("Car Insurance Quote")
  7.  
  8. Below=Frame(mgui,width=300,height=300,bd=4, relief="raise")
  9. Below.pack(side=BOTTOM)
  10.  
  11. text_entry=StringVar()
  12.  
  13. txtDisplay=Entry(Below,font=("century gothic",18,"bold"),textvariable=text_entry,width=21,bd=4,justify="right")
  14. txtDisplay.grid(row=0,column=0)
  15.  
  16. txtDisplay1=Entry(Below,font=("century gothic",18,"bold"),textvariable=text_entry,width=21,bd=4,justify="right")
  17. txtDisplay1.grid(row=1,column=0)
  18.  
  19. bt0=Button(Below,padx=16,pady=1,bd=4,fg="black",font=("century gothic",16,"bold"), width=6,height=2,
  20. text="Calculate").grid(row=2,column=0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement