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()