Tkinker Python Tutorial

from Tkinter  import *
win = Frame()
win.pack()
Checkbutton(win, text="Click here").pack(side=LEFT)
win.mainloop()