Python 类无法实例化怎么办?如何解决“TypeError: can\'t access attribute”错误?

python 类无法实例化怎么办?如何解决“typeerror: can\'t access attribute”错误?

python类无法实例化

在编程中,如果尝试创建实例化自定义类,可能会遇到以下错误:

typeerror: can't access attribute 'method_name' of 'classname'

这通常表明无法访问类的属性或方法。在这种情况下,您需要创建模块的初始化文件('__init__.py')来表明它是一个模块。

对于你的问题,你需要在以下目录下创建一个'__init__.py'文件:

立即学习Python免费学习笔记(深入)”;

'button_game/'

这将使python识别该目录为一个模块,并允许你从其他文件中导入类和函数。一旦创建了初始化文件,你就可以在其他文件中像这样创建类的实例:

from button_game.button import Button

button = Button(button_setting, screen)

以上就是Python 类无法实例化怎么办?如何解决“TypeError: can\'t access attribute”错误?的详细内容,更多请关注其它相关文章!