Skip to content

Instantly share code, notes, and snippets.

@trietptm
Created November 21, 2012 09:35
Show Gist options
  • Save trietptm/4123988 to your computer and use it in GitHub Desktop.
Save trietptm/4123988 to your computer and use it in GitHub Desktop.
First Tkinter Program
from Tkinter import *
root = Tk()
w = Label(root, text = "Hello Tkinter!")
w.pack()
root.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment