So, here is the code that I have, and when I run it, the value of the slider appears above the slider, I wonder if there is a way to get this value? Perhaps let a = this value .;)
from Tkinter import * control=Tk() control.title("Control") control.geometry("350x200+100+50") cline0=Label(text="").pack() cline1=Label(text="Speed").pack() cline3=Scale (control,orient=HORIZONTAL,length=300,width=20,sliderlength=10,from_=0,to=1000,tickinterval=100).pack() cline4=Label(text="").pack() control.mainloop()
source share