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

Python __str__函数

时间:2018-08-25 15:02:37      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:.sh   返回   int   python   要求   字符串   init   col   cat   

class Cat:
        def __init__(self,_name):
                self.name = _name
        def __str__(self):
                return "i am %s"%self.name
        def show(self):
                print("name is %s"%self.name)


tom = Cat("tom")

tom.show()

print(tom)


print("------------");

lanmao = Cat("lanpang")

lanmao.show()

print(lanmao)
__str__函数要求有返回值,必须有return,
__str__函数功能是将对象字符串化

 

Python __str__函数

标签:.sh   返回   int   python   要求   字符串   init   col   cat   

原文地址:https://www.cnblogs.com/zhanggaofeng/p/9534122.html

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