课程
/后端开发
/Python
/python进阶
为什么一定要用Person来调用count 直接count+=1为什么不行
2015-10-14
源自:python进阶 4-6
正在回答
如果你一定要这么写的话,那就这样写。
count=0class Person(object): def __init__(self,name): global count count=count +1 self.name=namep1 = Person('Bob')print countp2 = Person('Alice')print countp3 = Person('Tim')print count
兔子爱叫 提问者
PengCheng 回复 兔子爱叫 提问者
兔子爱叫 提问者 回复 PengCheng
调用类属性的方法是:类名.类属性名
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计