✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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.
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!