# your code goes here
buttons = []
for i in range(0, 10):
	buttons.append(ttk.Button(WinFrame, text=str(i+1), command=lambda: button_press(i+1))
	buttons[i].grid(row=i//3+1, col=i%3, sticky=NSEW)