一键生成个人网站,网站开发网络,企业网站建设费现金流科目,创意网红墙【人工智能概述】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