i) from Tkinter import *
root = Tk()
b1=Button(root, text='Quit', command=root.quit)
b1.pack()
root.mainloop()
ii) from Tkinter import *
root = Tk()
b1=Button(root, text='Close', command=root.close)
b1.pack()
root.mainloop()
Select one option from given two options.