1. pack()错误 pack()会返回None值,类型为<class NoneType>,类型错误,空值类型,没有其他类型的属性 def createWidget(self): self.text1 = Text(self, width=40, height=12, bg='gray').pack() #此处会将空值类型赋给 self.text1 #self.text1.pack() #self.text1.insert(1.0, '0123456789\nabcdefg') #self.text1.insert(2.3, '锄禾日当午,汗滴禾下土,谁知盘中餐,粒粒皆辛苦。\n') print(type(self.text1))
2. 扩展
其他提示<NonoType>类型错误的,也可能是被引用的变量,变成了空值类型,注意其赋值代码
如:AttributeError: 'NoneType' object has no attribute 'get'
a=a.append('b') #append()返回空值None,为NoneType