[Tutor] using Tkinter

Denis spirou@carolo.net
Fri, 07 Jan 2000 22:23:15 +0100


> James Bragg wrote:
> 
> Is there a tutorial somewhere on how to use TKinter?

Yes :
http://www.pythonware.com/library/tkinter/introduction/index.htm

Denis

---------------------------------------------------------

# File: hello1.py

from Tkinter import *

root = Tk()

w = Label(root, text="Hello James!")
w.pack()

root.mainloop()