Try passing width=200 as an extra parameter when creating the label.
This should work when creating a label with the specified width.
If you want to change it later, you can use:
label.config(width=200)
As you want to change the size of the font itself, you can try:
label.config(font=("Courier", 44))
Ashwinee k jha
source share