Created
November 8, 2012 01:20
-
-
Save hidsh/4035800 to your computer and use it in GitHub Desktop.
python: sample: hello using python/Tkinter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# http://www.geocities.jp/m_hiroi/light/pytk01.html | |
from Tkinter import * | |
root = Tk() | |
button = Button(root, text = 'Hello PyTk') | |
button.pack() | |
root.mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment