cpython/Demo/tkinter/guido/hello.py

18 lines
331 B
Python
Raw Normal View History

1995-04-10 08:46:37 -03:00
# Display hello, world in a button; clicking it quits the program
import sys
2009-01-04 14:53:28 -04:00
from tkinter import *
1995-04-10 08:46:37 -03:00
def main():
root = Tk()
button = Button(root)
button['text'] = 'Hello, world'
button['command'] = quit_callback # See below
button.pack()
root.mainloop()
1995-04-10 08:46:37 -03:00
def quit_callback():
sys.exit(0)
1995-04-10 08:46:37 -03:00
main()