python中repr函數(shù)作用是什么?
本文教程操作環(huán)境:windows7系統(tǒng)、Python3.9.1,DELLG3電腦。
1、repr()函數(shù)
得到的字符串通??梢杂脕碇匦芦@得該對象,將對象轉(zhuǎn)化為供解釋器讀取的形式。
2、語法
repr(a)
3、參數(shù)
a:對象。
4、返回值
返回一個對象的string格式。
5、使用實(shí)例
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學(xué)習(xí)教程請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。