How do I change the text size in a label widget, python tkinter [duplicate] How do I change the text size in a label widget, python tkinter [duplicate] tkinter tkinter

How do I change the text size in a label widget, python tkinter [duplicate]


Try passing width=200 as additional paramater when creating the Label.

This should work in creating label with specified width.

If you want to change it later, you can use:

label.config(width=200)

As you want to change the size of font itself you can try:

label.config(font=("Courier", 44))