Hi! Why this does not work?!
from tkinter import *
def terminate(root):
root.quit
root=Tk()
#b=Button(root,text="QUIT",command=root.quit)
b=Button(root,text="QUIT",command=lambda: terminate(root))
b.pack()
mainloop()
Thanks
--
https://mail.python.org/mailman/listinfo/python-list
