python中repr函數作用是什么?
本文教程操作環境:windows7系統、Python3.9.1,DELLG3電腦。
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)
repr()的輸入對python比較友好,大家可以放心使用哦~更多Python學習教程請關注IT培訓機構:千鋒教育。