您的位置 首页 知识分享

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

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

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

小萌新遭遇attributeerror错误

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

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

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

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

立即学习“”;

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

以上就是Python 小萌新:AttributeError: module ‘__mn__’ has no attribute ‘Student’ 怎么破?的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/4184.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部