i am working on my pyhton skills while stuck on something which i am not been able to resolve.
i am triyng to make the button as per shown in the image below:
enter image description here
with the below code :
start_button = Button(text="Start")
start_button.grid(column=0, row=3)
ResetButton = Button(text = "Reset")
ResetButton.grid(column = 2, row = 3)
i am able to get the below button :
enter image description here