当前位置:   article > 正文

【debug】python3 中关于“ ‘xx‘ object has no attribute ‘xx‘ “ 问题_transposedfont' object has no attribute 'getbbox

transposedfont' object has no attribute 'getbbox

python3 中关于" ‘xx’ object has no attribute ‘xx’ " 问题

python3 学习中关于" ‘xx’ object has no attribute ‘xx’ " 问题

class Admin(User):
    """为User添加一个privileges的属性"""

    def __index__(self, first_name, last_name, address):
        """
        先初始化父类的属性,再为子类添加一个privileges属性
        """
        super().__init__(first_name,last_name,address)
        self.privileges = ['can do sth']


    def show_privileges(self):
        for privilege in self.privileges:
            print(privilege)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

控制台打印如下错误:
在这里插入图片描述
错误原因:
子类构造函数__init__()因为Pycharm联想原因,误选为__index__()。
原因分析:
找不到子类构造函数,所有Python自动去调用父类构造函数,父类构造函数中并没有定义子类的pricileges属性,所以出现错误。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/644127
推荐阅读
相关标签
  

闽ICP备14008679号