how to create tkinter button to run a function and print output code example
Example: give utton a number python
def create_buttons(self):
for x in range(10):
button = ttk.Button(self, text=x, command=lambda number=x: self.callback(number))
button.grid()