On Apr 12, 8:07 am, Gabriel <dun...@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() -- http://mail.python.org/mailman/listinfo/python-list