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, column=1)<br> cnt = cnt+1<br><br>My problem is that when I want to do a .get() command on the entries they all have the same name, so I'm only able to get the last one. Is there a way for me automatically name the entries so each one has a unique name that I can find and use?<br>