my textsize в этом текстовом поле, кажется, влияет на мою сетку, но я не хочу, чтобы это было. have some code running in the back while developing that helps me to see the grid.
A picture of the result below:

My grid and code as below:
# define a grid
number_tuple_30 = (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19, 20,21,22,23,24,25,26,27,28,29,30)
number_tuple_45 = (0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19, 20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45)
wd.columnconfigure(number_tuple_30,weight = 10, uniform = "a")
wd.rowconfigure(number_tuple_45,weight = 10, uniform = "a")
wd.columnconfigure(1,weight = 13, uniform = "a")
# textbox
text = tk.Text(font=("Courier",15), bg=colour, borderwidth=1, relief="solid")
text.grid(column=0, row=39, sticky="nesw", columnspan=9, rowspan=7)
Подробнее здесь: https://stackoverflow.com/questions/797 ... -i-dont-wa