python中repr函数作用是什么?

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

1、repr() 函数

得到的字符串通常可以用来重新获得该对象,将对象转化为供解释器读取的形式。

2、语法

repr(a)

3、参数

a: 对象。

4、返回值

返回一个对象的 string 格式。

5、使用实例

classtest:
def__init__(self,name,age):
self.age=age
self.name=name
def__repr__(self):
return"Class_Test[name="+self.name+",age="+str(self.age)+"]"
t=test("Zhou",30)

print(t)
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。