from tkinter import
def show_values1():
v1 = i1.get()
s0.set(v1)
root = Tk()
root.title("Dropper")
w1 = Label(root, text="Timeslot:")
w1.place(x=10, y=30, width=100, height=20)
s0 = Scale(root, from_=1, to=70, orient=HORIZONTAL)
s0.place(x=110, y=10, width=300, height=40)
i1 = inputBox = Entry()
i1.place(x=420, y=28, width=40, height=20)
bu1 = Button(text='Enter', command=show_values1)
bu1.place(x=470, y=28, width=40, height=20)
root.mainloop()
对我来说,这段代码抛出_tkinter.TclError:预期的浮点数,但出现了“”。我该如何解决? 我正在尝试将滑块输入设置为用户在文本框中输入的手动输入。