| Revision: | 591 |
| Committed: | Tue Nov 3 22:45:12 2015 UTC (10 years, 4 months ago) by nino.borges |
| Content type: | text/x-python |
| File size: | 340 byte(s) |
| Log Message: | Moved dir out of main dir. |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | ninoborges | 8 | #test script from the Programing python book |
| 2 | ## Do not run this from Python Win. It crashes it. It runs fine by itself. ie from shell | ||
| 3 | from Tkinter import * | ||
| 4 | |||
| 5 | def quit(): | ||
| 6 | print 'hello, I must be going...' | ||
| 7 | import sys; sys.exit() | ||
| 8 | |||
| 9 | widget = Button(None, text='Hello GUI World', command = quit) | ||
| 10 | widget.pack() | ||
| 11 | widget.mainloop() |