属性方法对象方法调用
Posted loser1949
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了属性方法对象方法调用相关的知识,希望对你有一定的参考价值。
1.属性、方法、对象、方法调用
class Cat:
#属性
#方法
def eat(self):
print("猫在吃鱼....")
def drink(self):
print("猫正在喝kele.....")
def introduce(self):
#print("%s的年龄是:%d"%(tom.name, tom.age))
print("%s的年龄是:%d"%(self.name, self.age))
#创建一个对象
tom = Cat()
#调用tom指向的对象中的 方法
tom.eat()
tom.drink()
#给tom指向的对象添加2个属性
tom.name = "汤姆"
tom.age = 40
#获取属性的第1种方式
#print("%s的年龄是:%d"%(tom.name, tom.age))
tom.introduce()#相当于 tom.introduce(tom)
lanmao = Cat()
lanmao.name = "蓝猫"
lanmao.age = 10
lanmao.introduce()
以上是关于属性方法对象方法调用的主要内容,如果未能解决你的问题,请参考以下文章