“ AttributeError:'NoneType'对象没有属性'get'”的含义是什么?

时间:2019-03-25 17:17:58

标签: python tkinter

我正在尝试制作一个用于费率服务的程序,但是在运行该程序时显示错误,任何人都可以告诉其含义吗? 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()

0 个答案:

没有答案