Guest User

Untitled

a guest
May 11th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import tkinter
  2.  
  3. root = tkinter.Tk()
  4. theLabel = tkinter.Label(root, text="This is now working")
  5.  
  6. theLabel.pack()
  7.  
  8. root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment