蓝绝

博客园 首页 新随笔 联系 订阅 管理

 

class Student:
    def __init__(self,name,age):
        self.name=name
        self.age=age
    def __str__(self):         #object中有__str__()方法,用于对于 ‘对象的描述’
        return '我的名字是{0},今年{1}岁'.format(self.name,self.age)

stu=Student('张三',20)
print(dir(stu))               #查看指定对象所有属性
print(stu)                    #默会调用__str__()这样的方法
print(type(stu))

 

posted on 2022-09-17 20:13  蓝绝  阅读(8)  评论(0编辑  收藏  举报