Posts by Bernardo Loures • 11 points
1 post
-
-1
votes1
answer33
viewsQ: What alternative do I use to solve the problem of the get() function not working
from tkinter import * def executar(): l1['text'] = t1.get() l2['text'] = t2.get() l3['text'] = t3.get() root = Tk() root.title('App') t1 = Entry(root) t2 = Entry(root) t3 = Entry(root) l1 =…