I would like to ask for bright and simple idea how to draw thicker lines 
between each 3 fields in this grid. Its about sudoku so the slines 
should be there 4: 2 horizontaly a 2 vertikaly and maybe one around. 
Some idea is already present with me but its quite complicated.


from Tkinter import *

root=Tk()
size=2

for i in range(81):
    _row, _column=divmod(i,9)
    butt=Button(root, text=str(i), height=size, width=size*2, relief=RAISED)
    butt.grid(row=_row, column=_column)


root.title("sudoku")
root.mainloop()

Thank you

-- 
Pavel Kosina

_______________________________________________
Tkinter-discuss mailing list
[email protected]
http://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to