python Class:面向对象高级编程 __str__ / __repr__
admin
2023-07-23 22:02:26
0

其实:__str__ 与 __repr__效果一样, 人们说:__str__ 是面向用户的, 而__repr__是面向程序员的, 轰朵你?


官网解释:

  • object.__repr__(self)

  • Called by the repr() built-in function and by string conversions (reverse quotes) to compute the “official” string representation of an object.  If at all possible, this should look like a valid Python expression that could be used to recreate an object with the same value (given an appropriate environment).  If this is not possible, a string of the form <...some useful description...>should be returned.  The return value must be a string object. If a class defines __repr__() but not __str__(), then __repr__() is also used when an “informal” string representation of instances of that class is required.


  • object.__str__(self)

  • Called by the str() built-in function and by the printstatement to compute the “informal” string representation of an object.  This differs from __repr__() in that it does not have to be a valid Python expression: a more convenient or concise representation may be used instead. The return value must be a string object.


看了解释,哪里说是面向用户,哪里又说面向程序员了????看到加粗字了没有,看到下滑线了没有???这里说的是作用于所有人好嘛!!!如果非要以自己的职位来说,好吧,好像是这么一回事,真是 淫秽  隐晦的表达。


不说了,先小试一下:

#!/usr/bin/python
# -*- coding: utf-8 -*-

class Student(object):
     def __init__(self, name):
         self.hah = name
        
class Str(Student):
     def __str__(self):
       return  'Str (name: %s)' %self.hah


class Repr(Student):
     def __repr__(self):
       return  'Repr(name: %s)' % self.hah


s = Student('Michael')
print s.hah

python Class:面向对象高级编程 __str__ / __repr__

print Str('you')

python Class:面向对象高级编程 __str__ / __repr__

print Repr('me')

python Class:面向对象高级编程 __str__ / __repr__


最近非常的狂,不,不是最近,而是这个阶段的我,非常喜欢怼,如果我表达不好,那真是 抱歉了 。。。 你有理,你也来怼我啊,来啊,相互伤害啊!!!

相关内容

热门资讯

念念不忘“未获支持”,特朗普又... 【环球网报道 记者 闫珮云】综合美国《纽约邮报》、俄罗斯卫星通讯社、土耳其阿纳多卢通讯社等媒体报道,...
立陶宛叫停与台当局合作,此前疯... 曾经冲在“反华”最前线的立陶宛,如今态度似乎发生变化。立陶宛外交部22日证实,叫停了与台湾当局的合作...
李四川推敬老卡现金化争老年选票 据凤凰卫视报道,台湾年底县市长选举,竞争最为激烈的新北市蓝绿选情胶着。国民党新北市长参选人李四川勤跑...
央视网评:在“人均985”的“... 这两天,全国各省高考分数陆续公布。新闻里、热搜榜再次被高分学霸淡定查分视频或“700+”喜报霸屏霸榜...
鲁比奥:伊朗收费若成先例,将像... 据美国哥伦比亚广播公司(CBS)援引法新社报道,美国国务卿鲁比奥周四警告称,如果允许伊朗对通过霍尔木...
恐慌之下,有妈妈把纸尿裤塞进了... 6月22日下午两点,济南蝉声轰鸣。山东省第一医科大学附属省立医院门诊大厅里,人流如常。“我不回答。”...
凤凰连线在委华人:委内瑞拉首都... 在委内瑞拉连续强震之后,当地有大量房屋倒塌或受损,而首都加拉加斯的民众也都从建筑物中撤离,在户外避险...
1198.79亿元!宇通客车连... 6月24日,世界品牌实验室发布2026年《中国500最具价值品牌》榜单,宇通客车以1198.79亿元...
活力中国调研行|数据多跑路,居... 【大河财立方 记者 夏晨翔 洪昊旸 雄安新区报道】 儿童活动区里,家长正带着孩子嬉戏玩耍;图书馆里,...
公安部公布4起非法占用农用地典... 6月25日,公安部公布4起非法占用农用地典型案例,旨在依法严厉打击非法占用农用地犯罪,全力守护国家粮...