ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ns_dev/Python/learning/Tkinter/tk_test1.py
Revision: 8
Committed: Sat May 5 04:21:19 2012 UTC (13 years, 10 months ago) by ninoborges
Content type: text/x-python
Original Path: Python/NinoCode/learning/Tkinter/tk_test1.py
File size: 127 byte(s)
Log Message:
Initial Import

File Contents

# User Rev Content
1 ninoborges 8 ## Tkinter testing
2    
3     from Tkinter import *
4    
5     root = Tk()
6    
7     w= Label(root, text="Hello, World!")
8     w.pack()
9    
10     root.mainloop()