When we have to create tk objects with loops it's a relief. But what about times that we want to name them as var0=first_entry then var1=second_entry etc...? What is the most elegant way to do it?
While i < 10:
            self.p{i} = tk.Entry(tk.Frame,
                        width=12).grid(row=2, column=i, pady=10) 
                        # self.p{i} is where i'm stuck
 
     
    