GUI Programming

r rt8396 at gmail.com
Sun Apr 12 11:40:23 EDT 2009


On Apr 12, 8:07 am, Gabriel <dun... at dreams.sk> wrote:
> Hello,
>
> I'm python newbie and i need to write gui for my school work in python.
> I need to write it really quick,
[snip]

Tkinter is built-in, why not start there?

from Tkinter import *
root = Tk()
root.mainloop()








More information about the Python-list mailing list