温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2020-07-31 20:52:14 来源:网络 阅读:804 作者:虎皮喵的喵 栏目:编程语言

其实:__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__


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

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI