AttributeError: type object ’MainGame’ has no attribute ‘Enemy_bullet_list’怎么解决
时间: 2023-04-01 13:03:05 浏览: 172
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误通常是因为在代码中使用了一个不存在的属性。你需要检查你的代码,确保你正确地定义了 Enemy_bullet_list 属性,并且在使用它之前进行了初始化。你还可以尝试使用 dir() 函数来查看 MainGame 类的属性列表,以确保你的属性名称正确。
阅读全文