Home > Software engineering >  Get values from a variable number of entry boxes in Tkinter
Get values from a variable number of entry boxes in Tkinter

Time:01-04

I have created a simple gui that displays a variable amount of floats from a given list as label widgets in one column and then a corresponding amount of entry boxes in the adjacent column. I am able to "get" the value of the last entry widget with no problem. However, I would like to "get" the values of all of the entry widgets. Ideally this would be a dictionary, but I'll take any output at this point. I have looked at enter image description here

Values printed to Console:

2.5
7.5
15.0
25.0
  • Related