import Tkinter root = Tkinter.Tk() for r in range(4): for c in range(6): Tkinter.Checkbutton(root,borderwidth=0).grid(row=r,column=c) root.mainloop()