为了账号安全,请及时绑定邮箱和手机立即绑定
# Enter a code
class Animal(object):
count = 0
def __init__(self,name,age):
self.name = name
self.age = age
Animal.count += 1



dog = Animal('wangwang',1)
cat = Animal('mimi',3)

print(dog.count)
print(cat.count)
# Enter a code
class Animal(object):
def __init__(self,name,age):
self.name = name
self.age = age

dog = Animal('dog',1)
cat = Animal('cat',2)

print(dog.name,dog.age)
print(cat.name,cat.age)
# Enter a code
class Animal():
pass

dog = Animal()
cat = Animal()

print(dog)
print(cat)
print(dog == cat)

最新回答 / weixin_慕先生9155963
定义了类,输出你也没直接类调用方法啊,直接打印这个类是干嘛呢???????
运行参考答案还是一直报错
class Animal(object):
__age = 2
def __init__(self, name, age):
self.name = name

cat = Animal('Kitty', '3')

print(cat.name)
print(cat._Animal__age)

最赞回答 / 土斤土斤
这是一种代码简写的方式,称之为推导式,是通过一行代码完成循环判断,并遍历出一系列数据的编写代码方式。语法为:成员 for 循环 ... if 判断 ...而例子中的是为推导式中的一种类型,为列表推导式,结果是一个列表: [item for item in Iterable]所以 result = [item for item in map(lambda x: x * x, [1, 2, 3, 4, 5, 6, 7, 8, 9])] 是这一段的简写:result = []for i in  map(lamb...

最赞回答 / weixin_慕莱坞3215187
class Person(object):
    def __init__(self, name, gender, **kw):
        self.name = name
        self.gender = gender
        for k, v in kw.items():
            setattr(self, k, v)

p = Perso...

最新回答 / qq_慕婉清6326688
是的,p.who()接收的是一个return返回,需要打印才能展示

最新回答 / qq_慕勒7424300
应该是我8000端口被占了,换个端口可以了 
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消