Tkinker Python Tutorial

from Tkinter  import *
root = Tk()
btn = Button(root, text="Push Me!")
btn.pack()
root.mainloop()