最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

__str__和repr__的区别

来源:懂视网 责编:小采 时间:2020-11-27 14:09:46
文档

__str__和repr__的区别

__str__和repr__的区别:__str____str__在python文档中的描述如下Called by the str() built-in function and by the print statement to compute the informal string representation of an object. This differs from
推荐度:
导读__str__和repr__的区别:__str____str__在python文档中的描述如下Called by the str() built-in function and by the print statement to compute the informal string representation of an object. This differs from
__str__

__str__在python文档中的描述如下”Called by the str() built-in function and by the print statement 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.”

__repr__和__str__的区别(官方)

官方文档中str()中描述了__repr__和__str__的区别:”Return a string containing a nicely printable representation of an object. For strings, this returns the string itself. The difference with repr(object) is that str(object) does not always attempt to return a string that is acceptable to eval(); its goal is to return a printable string. If no argument is given, returns the empty string, ”.”,也就是__str__和__repr__区别在于__str__目的不在于总是尝试返回一个适用于eval()的字符串,而是返回一个很好地向人描述对象的字符串。而__repr__目的在于”makes an attempt to return a string that would yield an object with the same value when passed to eval()”,尝试让返回的字符串能够通过eval()来生成一个一样的对象。

__repr__和__str__的区别(解释)

__repr__和__str__这两个方法都是用于显示的,__str__是面向用户的,而__repr__面向程序员。

打印操作会首先尝试__str__和str内置函数(print运行的内部等价形式),它通常应该返回一个友好的显示。

__repr__用于所有其他的环境中:用于交互模式下提示回应以及repr函数,如果没有使用__str__,会使用print和str。它通常应该返回一个编码字符串,可以用来重新创建对象,或者给开发者详细的显示。

当我们想所有环境下都统一显示的话,可以重构__repr__方法;当我们想在不同环境下支持不同的显示,例如终端用户显示使用__str__,而程序员在开发期间则使用底层的__repr__来显示,实际上__str__只是覆盖了__repr__以得到更友好的用户显示。

class Test(object):
 def __init__(self, value='hello, world!'):
 self.data = value
>>> t = Test()
>>> t
<__main__.Test at 0x7fa91c307190>
>>> print t
<__main__.Test object at 0x7fa91c307190>
# 看到了么?上面打印类对象并不是很友好,显示的是对象的内存地址
# 下面我们重构下该类的__repr__以及__str__,看看它们俩有啥区别
# 重构__repr__
class TestRepr(Test):
 def __repr__(self):
 return 'TestRepr(%s)' % self.data
>>> tr = TestRepr()
>>> tr 直接终端显示,不print就是面向程序员
TestRepr(hello, world!)
>>> print tr print是面向程序员
TestRepr(hello, world!)
# 重构__repr__方法后,不管直接
输出对象还是通过print打印的信息都按我们__repr__方法中定义的格式进行显示了 # 重构__str__ calss TestStr(Test): def __str__(self): return '[Value: %s]' % self.data >>> ts = TestStr() >>> ts <__main__.TestStr at 0x7fa91c314e50> >>> print ts [Value: hello, world!] # 你会发现,直接输出对象ts时并没有按我们__str__方法中定义的格式进行输出,而用print输出的信息却改变了

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

__str__和repr__的区别

__str__和repr__的区别:__str____str__在python文档中的描述如下Called by the str() built-in function and by the print statement to compute the informal string representation of an object. This differs from
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top