How to change height and width of a button in tkinter code example
Example: set size of button tkinter
button = tkinter.Button()
button.config(height=100,
width=100)
button = tkinter.Button()
button.config(height=100,
width=100)