change the size of a button tkinter code example
Example 1: Button size tkinter
pythonCopytk.Button(root,
text = "",
height = 20,
width = 20)
Example 2: change the size of a button tkinter
button = Button(text="",height=10,width=10,command='').pack()