#Python
#Tkinter
How To Create A Simple Registration Form Using Tkinter Python
This video shows how to create a simple login form using python with Tkinter.
Please See The Source Code Below:
from tkinter import *
root=Tk()
root.title("Registration Form")
tittlelabel=Label(root, text="Registration Form", font="arial 15")
tittlelabel.pack(pady=7)
f_namelabel=Label(root,text="First Name", font="arial 11")
f_namelabel.pack()
f_nameEntry=Entry(root,width=35)
f_nameEntry.pack()
l_nameLabel=Label(root, text="Last Name" ,font="arial 11")
l_nameLabel.pack()
l_nameEntry=Entry(root,width=35)
l_nameEntry.pack()
adressLabel=Label(root,text="Address", font="11")
adressLabel.pack()
adressEntry=Entry(root,width=35)
adressEntry.pack()
zipLabel=Label(root, text="Zip-Code", font=11)
zipLabel.pack()
zipEntry=Entry(root,width=35)
zipEntry.pack()
buttonreg=Button(root, text="Submit")
buttonreg.pack()
root.geometry("500x400")
root.mainloop()
On this page of the site you can watch the video online How To Create A Simple Registration Form Using Tkinter Python Part 1 with a duration of hours minute second in good quality, which was uploaded by the user Jason 30 May 2021, share the link with friends and acquaintances, this video has already been watched 405 times on youtube and it was liked by 5 viewers. Enjoy your viewing!