我想获取我自己写的模块里的某一个函数的返回值,但是提示AttributeError错误 错误详情:AttributeError: module '__main__' has no attribute 'Student' 具体代码: 出现错误的是第10行,很茫然,不知道为什么会出现这个错误.请大神指点一下
1 回答
慕姐8265434
TA贡献1813条经验 获得超2个赞
getattr(对象,名称) 返回这个对象属性名的值,name这里必须是字符串,
getattr(x,'foobar') 相当于,x.foobar 你这里报错的原因是因为没有Student这个属性(ret['status']的结果应该是Student)
添加回答
举报
0/150
提交
取消