![]() |
|
|
+ Search |
![]()
|
Jun 5th, 2000 05:52
unknown unknown, richard_chamberlain
from Tkinter import *
root=Tk()
label=Label(root,width=12)
def clicker():
label.configure(text="Hello Jilani")
button=Button(root,text="Click Me",command=clicker)
label.pack(side=TOP)
button.pack(side=TOP)
root.mainloop()
Try www.pythonware.com/library.htm
Also there is a good book by John Grayson (Python and Tkinter
Programming) and one on the way by Frederik Lundh published by O'Reilly.