I was wondering how I could get it so the window for tkinter would close when a button is clicked, any help is appreciated. Below is part of my code.
def ynumber_chosen():
class number:
def __init__ (self, root):
root.title('Picking a row')
root.minsize(width = 3, height = 225)
root.maxsize(width = 3, height = 225)
label = Label(root, text = "Pick a row")
self.button1 = Button(root, text = "1", height = 3, width = 7, command = ynumber1)
self.button1.grid(row = 0, column = 1)
self.button1 = Button(root, text = "2", height = 3, width = 7, command = ynumber2)
self.button1.grid(row = 0, column = 3)
self.button1 = Button(root, text = "3", height = 3, width = 7, command = ynumber3)
self.button1.grid(row = 2, column = 1)
self.button1 = Button(root, text = "4", height = 3, width = 7, command = ynumber4)
self.button1.grid(row = 2, column = 3)
self.button1 = Button(root, text = "5", height = 3, width = 7, command = ynumber5)
self.button1.grid(row = 3, column = 1)
self.button1 = Button(root, text = "6", height = 3, width = 7, command = ynumber6)
self.button1.grid(row = 3, column = 3)
self.button1 = Button(root, text = "7", height = 3, width = 7, command = ynumber7)
self.button1.grid(row = 4, column = 1)
root = Tk()
app1 = number(root)
mainloop()