Python-tkinter 'NoneType' object has no attribute 'config'

刚开始学习PythonGUI编程,遇到这种问题

当创建一个对象后,使用.config()函数为它设置参数,比如

Label_1 = Label(frame_1).pack(side='right')


def submit():
    Label_1.configure(text=var2)

很简单的三行代码,但是当运行时,却会报错

AttributeError: 'NoneType' object has no attribute 'configure'

原因是,当你创建一个Label对象后,马上调用了pack方法,然后pack()返回None,所以接下来再执行config()会报错

正确的作法:

Label_1 = Label(frame_1)
Label_1.pack(side='right')


def submit():
    Label_1.configure(text=var2)

即,先创建对象,再执行其他的操作

类比,这种做法对于其他的对象类型,如Button,Radiobutton,Entry……以及放置函数grid(),place()均适用

 

return 0;

你可能感兴趣的:(python学习)