High Definition Standard Definition Theater
Video id : 1Fm8MvSFCOk
ImmersiveAmbientModecolor: #bbcbd1 (color 2)
Video Format : (720p) openh264 ( https://github.com/cisco/openh264) mp4a.40.2 | 44100Hz
Audio Format: 140 ( High )
PokeTubeEncryptID: 3b32e6fc5b741cac94f8c4510af7d94ea6af84e94590c6ed3064bf6b3842d88a4a0216821a9dff616a303dec63d2a71c
Proxy : eu-proxy.poketube.fun - refresh the page to change the proxy location
Date : 1727915695954 - unknown on Apple WebKit
Mystery text : MUZtOE12U0ZDT2sgaSAgbG92ICB1IGV1LXByb3h5LnBva2V0dWJlLmZ1bg==
143 : true
Tkinter user data entry form with python code | python coding
Jump to Connections
51 Views β€’ Apr 6, 2023 β€’ Click to toggle off description
This video shows you how to create user data entry form using tkinter.
Our code for this task is as follows
................................................................................................................
import tkinter as tk
class DataEntryForm:
def __init__(self, master):
self.master = master
master.title("Data Entry Form")

create labels and entry fields
self.label1 = tk.Label(master, text="First Name:")
self.label1.grid(row=0, column=0)
self.entry1 = tk.Entry(master)
self.entry1.grid(row=0, column=1)

self.label2 = tk.Label(master, text="Last Name:")
self.label2.grid(row=1, column=0)
self.entry2 = tk.Entry(master)
self.entry2.grid(row=1, column=1)

create submit button
self.submit_button = tk.Button(master, text="Submit", command=self.submit)
self.submit_button.grid(row=2, column=0, columnspan=2)

def submit(self):
get data from entry fields
field1 = self.entry1.get()
field2 = self.entry2.get()

process data (insert into database, etc.)
print("Field 1:", field1)
print("Field 2:", field2)

clear entry fields
self.entry1.delete(0, tk.END)
self.entry2.delete(0, tk.END)

create GUI
root = tk.Tk()
app = DataEntryForm(root)
root.mainloop()
........................................................................................................................
Music: www.bensound.com/free-music-for-videos
License code: B7DGZDZYD4HKGULN
Metadata And Engagement

Views : 51
Genre:
Uploaded At Apr 6, 2023 ^^


warning: returnyoutubedislikes may not be accurate, this is just an estiment ehe :3
Rating : 5 (0/5 LTDR)

100.00% of the users lieked the video!!
0.00% of the users dislieked the video!!
User score: 100.00- Masterpiece Video

RYD date created : 2023-04-07T21:22:56.226121Z
See in json
Tags
Connections
Nyo connections found on the description ;_; report an issue lol

YouTube Comments - 2 Comments

Top Comments of this video!! :3

@sonaliabewardana5771

1 year ago

❀❀❀

1 |

@sajitha417

1 year ago

keep it up broo

|

Go To Top