I'm stuck trying to write a code in tkinter, which changes the font size when you click a radiobutton.
The code for the default text is written in the code
changeable_label = Label(the_window, text = 'Text Size' ,
font = ('Arial' , 25), fg = 'black', width = 11, height = 2,
borderwidth = 1, relief = 'solid').pack()
I cant figure out a function that will change the number in 'font'. I thought of using .replace but that is for strings.