def create_buttons(self): for x in range(10): button = ttk.Button(self, text=x, command=lambda number=x: self.callback(number)) button.grid()