I'm trying to create a widget that contains an amount of entry fields based on the an aspect of a file that's loaded in.
I've been using
self.e = Entry(self.master);
self.e.pack();
self.e.delete(0,END);
self.e.insert(0, 0);
to create each entry but ideally want to iterate on this command. Each entry variable should have a different name so I can call each individual cell, which I don't know if that is possible.
More generally, what I'm trying to do is create a n by 1 table where the user can input an integer to the cells and I can access that value in another function.