This question already has answers here:
Closed 5 years ago.
In python 3.4 using Tkinter, how do I change the text size in a label widget?
So far I have tried
label_one = Label(root, text = 'Hello', size = '50')
and
label_one.config(fontsize='50')
But I am not sure where to start and I can't find anything saying how to do it.