I am creating a window with a variable number of entries powered by a list and a for statement in Tkinter. It is basically like this:<br><br>cnt = 0<br>for x in list:<br> entry = Entry(window)<br> label = Label(window, text=x)<br> label.grid(row=cnt)<br> entry.grid(row=cnt...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.