from Tkinter import *


def pritisni():
        lab= Label(root, text = 'Pritisnuli ste gumb')
        lab.pack()
      

root = Tk()

button = Button(root, text = 'PRITISNI MEE', command = pritisni)
button.pack()

root.mainloop()
