from Tkinter import * root = Tk() wid =Label(root) wid.config(text="hello world") wid.pack(side=TOP) Label(root,text="forth generation Languages").pack(side=TOP) root.title('gui1a.py') root.mainloop()