我正在尝试制作一个用于费率服务的程序,但是在运行该程序时显示错误,任何人都可以告诉其含义吗? AttributeError:“ NoneType”对象没有属性“ get” ,这是我的代码-
from tkinter import *
root = Tk()
root.geometry("500x500")
def rateus():
print(f"Thanks for rate us, {rateslider.get()}")
Label(root,text="Rate your experience with us").pack()
rateslider = Scale(root, from_=0,to=5, orient=HORIZONTAL).pack()
Button(root,text="Rate Us",command=rateus).pack()
root.mainloop()