[Tutor] A simple problem with Tkinter
Ali Polatel
alipolatel at yahoo.com
Thu Sep 30 16:27:30 CEST 2004
you should pack them!
from Tkinter import *
root=Tk()
w=Label(root,text="Hello!!") Correct is w=Label(root,text="Hello!!").pack()
b=Button(root,text="Bye",command='exit')
Correct is b=Button(root,text="Bye",command='exit').pack()
root.mainloop()
---------------------------------
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.python.org/pipermail/tutor/attachments/20040930/34ae0606/attachment.htm
More information about the Tutor
mailing list