change width of button tkinter code example
Example 1: Button size tkinter
pythonCopytk.Button(root,
text = "",
height = 20,
width = 20)
Example 2: set size of button tkinter
button = tkinter.Button()
button.config(height=100,
width=100)