这篇文章主要介绍python中repr函数怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
1、repr() 函数
得到的字符串通常可以用来重新获得该对象,将对象转化为供解释器读取的形式。
2、语法
repr(a)
3、参数
a: 对象。
4、返回值
返回一个对象的 string 格式。
5、使用实例
class test: 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)