编程语言
首页 > 编程语言> > Python - 面向对象编程 - __str__()

Python - 面向对象编程 - __str__()

作者:互联网

为什么要讲 __str__

 

重点

必须返回字符串

 

不使用 __str__ 的栗子

class PoloBlog:
    def __init__(self, name):
        self.name = name


blog1 = PoloBlog("小菠萝")
print(blog1)


# 输出结果
<__main__.PoloBlog object at 0x1078a4dc0>

 

新增 __str__ 方法

class PoloBlog:
    def __init__(self, name):
        self.name = name

    def __str__(self):
        return "name is %s" % self.name


blog1 = PoloBlog("小菠萝")
print(blog1)


# 输出结果
name is 小菠萝

 

标签:__,name,Python,self,blog1,str,print,面向对象编程
来源: https://www.cnblogs.com/poloyy/p/15202541.html