move sections
[python/dscho.git] / Demo / tkinter / guido / hello.py
blob358a7ecebdb503b7b294956383fba1a2c46cf6a2
1 # Display hello, world in a button; clicking it quits the program
3 import sys
4 from Tkinter import *
6 def main():
7 root = Tk()
8 button = Button(root)
9 button['text'] = 'Hello, world'
10 button['command'] = quit_callback # See below
11 button.pack()
12 root.mainloop()
14 def quit_callback():
15 sys.exit(0)
17 main()