स्पष्ट समस्या यह है कि आप प्रारंभ होने के बाद सीधे दोनों प्रविष्टियों से टेक्स्ट प्राप्त कर रहे हैं। इसके लिए आप जिन दो चरों का उपयोग कर रहे हैं, वे तब नहीं बदले जाएंगे जब प्रविष्टियों में पाठ बदल जाएगा।
यहां कुछ बुनियादी कोड दिए गए हैं कि कैसे दो प्रविष्टि क्षेत्रों से मूल्यों को पुनः प्राप्त करें और उन्हें एक फ़ंक्शन में पास करें:
import tkinter as Tk
import tkinter.messagebox
def show_pass_user(password, user):
# show what we got
tkinter.messagebox.showinfo("Data received", "Hey just got your username \"" + user + "\"" +
" and password \"" + password + "\"")
# run your sql here
def main():
root = Tk.Tk()
entry_user = Tk.Entry(root)
entry_user.insert(0, "Username")
entry_pass = Tk.Entry(root)
entry_pass.insert(0, "Password")
# use a lambda to get Username and Password when button is pressed
pressme = Tk.Button(root, text="Press Me", command=lambda:
show_pass_user(entry_pass.get(), entry_user.get()))
entry_user.grid()
entry_pass.grid()
pressme.grid()
root.mainloop()
if __name__ == "__main__":
main()
यह कोड केवल Python3! के साथ चलता है।