Skip to content Skip to sidebar Skip to footer

How To Adjust Label In Tkinter?

I am making a program that uses this equation: 16*(falling_speed)^2 = height This basically takes the time you are falling and uses it to determine how high you are falling from.

Solution 1:

You can use timer["text"] = "some_text", or timer.config(text="some_text").

All widgets have the configure method which you can find good reference here.

Post a Comment for "How To Adjust Label In Tkinter?"