LG
Size: a a a
LG
БГ
БГ
py3
help(str.__repr__)
Help on wrapper_descriptor:
__repr__(self, /)
Return repr(self).
E
R
LG
LG
R
LG
LG
LG
R
А
py3
help(str.__repr__)
Help on wrapper_descriptor:
__repr__(self, /)
Return repr(self).
БГ
py3
class T:
def __str__(self): return "a"
def __repr__(self): return "b"
t = T()
print(t)
print(str(t))
print("{}".format(t))
a
a
a
LG
LG
E
LG
py3
class T:
def __str__(self): return "a"
def __repr__(self): return "b"
t = T()
print(t)
print(str(t))
print("{}".format(t))
a
a
a
LG
LG