【人工智能概述】python妙用 str()
文章目录
- 【人工智能概述】python妙用 __str__()
- 一.python内置函数`__str__()`
一.python内置函数__str__()
- 通过自定义__str__()函数可以打印对象中相关的内容。
class Person(object):def __init__(self, name = 'tom', age = 10):self.name = nameself.age = ageself.parent = Nonedef __str__(self):return "Your name is: " + self.nametom = Person()
print(tom)# 唔,果然输出了我们自定义的内容
# >>> Your name is: tom