logo

Crowdly

To close the tkinter main window following statements are used. i) from Tkint...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

To close the tkinter main window following statements are used.

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.

0%
100%
More questions like this

Want instant access to all verified answers on www.glsufcait.org?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!