嘉兴建设规划网站,深圳建设工程交易服务网宝安分中心,商城网站建设服务器,资阳seo公司【人工智能概述】python妙用 str() 文章目录 【人工智能概述】python妙用 __str__()一.python内置函数__str__() 一.python内置函数__str__()
通过自定义__str__()函数可以打印对象中相关的内容。
class Person(object):def __init__(self, name tom, age 10):self.name n…【人工智能概述】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