请问下这个哪里错了?报错

来源:2-5 Python类属性

Death小少爷

2021-02-07 12:25

class Animal(object):

    count = 0

    def __init__(self, name):

        self.name = name

        Animal.count += 1

        

animal1 = Animal('Cat')

print(animal1.count)


animal2 = animal('Dog')

print(animal2.count)


写回答 关注

2回答

  • 方世玉2017
    2021-02-09 11:30:40
    已采纳

    http://img.mukewang.com/602201c100017cfd20961536.jpg

    copy 的你的代码,改了大小写

    Death小...

    好的 我明白了,应该是我软件环境出问题了

    2021-02-09 11:46:10

    共 1 条回复 >

  • 方世玉2017
    2021-02-07 14:24:30

    animal2 = animal('Dog')

    animal2 = Animal('Dog')

    大小写

    Death小...

    改了还是报错

    2021-02-09 11:01:21

    共 1 条回复 >

Python3 进阶教程(新版)

学习函数式、模块和面向对象编程,掌握Python高级程序设计

41956 学习 · 236 问题

查看课程

相似问题