Python 小萌新:AttributeError: module ‘__main__’ has no attribute ‘Student’ 怎么破?

Python 小萌新:AttributeError: module ‘__main__’ has no attribute ‘Student’ 怎么破?

python 小萌新遭遇attributeerror错误

小萌新在使用 python 时,可能会遇到以下错误:

AttributeError: module '__mAIn__' has no attribute 'Student'
登录后复制

原因在于,该错误表明模块名为 __main__ 的模块(即主模块)中没有名为 student 的属性。这通常发生在你尝试从另一个模块导入类或函数时。

在你的代码中,第10行尝试通过 sys.modules[‘__main__’] 访问主模块,并使用 getattr() 函数来获取 ret[‘status’] 中指定的名为 cls 的属性。但是,主模块中并不存在名为 student 的属性。

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

要解决此错误,确保你已将 student 类从适当的模块导入。在你的代码中,你可以尝试在第2行用 import student 代替 from core import student。这将确保将 student 类导入主模块,并允许你在第10行访问它。

© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容