ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
ns_dev
/
NinoCode
/
learning
/
Tkinter
/
Python_programing_book
/
gui1.py
Revision:
3
Committed:
Sat May 5 03:52:28 2012 UTC
(13 years, 10 months ago) by
ninoborges
Content type:
text/x-python
File size:
214 byte(s)
Log Message:
Initial Import
File Contents
#
User
Rev
Content
1
ninoborges
3
#test script from the Programing python book
2
3
from Tkinter import *
4
#from Tkinter import Label
5
#from Tkinter import TOP
6
7
widget = Label(None, text="Hello GUI World!")
8
widget.pack(side=TOP)
9
widget.mainloop()