AttributeError: module 'tkinter.scrolledtext' has no attribute 'scrolledtext'
时间: 2024-05-22 22:08:40 浏览: 268
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为导入的模块名与导入的属性名不匹配所导致的。在Python中,使用import语句导入模块时,可以使用from ... import ... 语句来导入该模块的某个属性,例如:
```
from tkinter.scrolledtext import ScrolledText
```
这个语句将从tkinter.scrolledtext模块中导入ScrolledText类。如果你写成下面这样:
```
from tkinter.scrolledtext import scrolledtext
```
那么当你调用scrolledtext时,就会出现AttributeError: module 'tkinter.scrolledtext' has no attribute 'scrolledtext'的错误。
阅读全文