I have three entries like this:
e1 = Entry(master, state="readonly")
e2 = Entry(master, state="readonly")
e3 = Entry(master, state="readonly")
Is there any way to use a variable or string to define name of the Entry
like:
x=int(1)
e+str(x) = Entry(master, state="readonly")