I want to use a Tkinter scale to set the magnitude of an input. Therefore I want the ticks of the scale to be 1, 10, 100, 1000 etc.
My initial thoughts are that I will have the scale
magnitudescale = Scale(window1, from_ = 0, to = 3)
When the scale is moved there would be some function that takes the scale position and alters the value by 10^x
Is there a clean way to do this?