[Tutor] tkinter??

alan.gauld@bt.com alan.gauld@bt.com
Fri, 28 Jan 2000 17:27:39 -0000


> runpy

???

> from tkinter import *

from Tkinter import *

#----> Python is case sensitive!

> w = button(text="hello", command = "exit")

w = Button(text="hello", command="exit")

> w.pack()
> w.mainloop()

Try that.

Alan G.