AttributeError: 'Label' object has no attribute 'yview'
时间: 2023-11-15 15:04:58 浏览: 146
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为你在使用Tkinter的Label对象时,尝试使用yview()方法,但是Label对象并没有这个方法。yview()方法是用于滚动文本的,而Label对象是用于显示静态文本的。如果你需要滚动文本,可以考虑使用Tkinter的Text对象。如果你需要在Label对象中显示长文本,可以考虑使用wraplength属性来自动换行。
阅读全文