‘‘‘重写:将函数重写定义写一遍 __str__():在调用print打印对象时自动调用,是给用户用的,是一个描述对象的方法。__repr__():是给机器用的,在Python解释器里面直接敲对象名在回车后调用的方法注意:在没有str时,且有repr,str = repr ‘‘‘class Person(object): def __init__(self, name, age, height, weight): self.name = name self.age = age self.height = height self.weight = weight def __str__(self): return "%s-%d-%d-%d" % (self.name, self.age, self.height, self.weight) per = Person("hanmeimei", 20, 170, 55)#print(per.name, per.age, per.height, per.weight)print(per) #有点:当一个对象的属性值很多,并且都需要打印,重写了__str__方法后,简化了代码
原文地址:https://www.cnblogs.com/pygo/p/12292692.html
时间: 2024-10-08 19:00:05