码迷,mamicode.com
首页 > 编程语言 > 详细

python 重写__repr__与__str__函数

时间:2020-02-10 21:01:03      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:注意   pytho   对象   自动调用   自动   def   方法   pre   ret   

‘‘‘
重写:将函数重写定义写一遍

__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__方法后,简化了代码

python 重写__repr__与__str__函数

标签:注意   pytho   对象   自动调用   自动   def   方法   pre   ret   

原文地址:https://www.cnblogs.com/pygo/p/12292692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!