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