#!/usr/bin/python

from Tkinter import * 

root = Tk()
w = Label(root, text = "Szia X felület.")
w.pack()

root.mainloop()
