我正在学习Python中的绳索。当我尝试Foobar使用该print()函数打印类的对象时,得到如下输出:
Foobar
print()
<__main__.Foobar instance at 0x7ff2a18c>
有没有办法设置类及其对象的打印行为(或字符串表示形式)?例如,当我调用类对象时,我想以某种格式打印其数据成员。如何在Python中实现?print()
Python
如果你熟悉C ++类,则可以通过为类ostream添加friend ostream& operator << (ostream&, const Foobar&)方法来实现上述目的。
C ++
friend ostream& operator << (ostream&, const Foobar&)
>>> class Test: ... def __repr__(self): ... return "Test()" ... def __str__(self): ... return "member of Test" ... >>> t = Test() >>> t Test() >>> print(t) member of Test
该__str__方法是在打印时发生的事情,该__repr__方法是在使用repr()功能时(或在交互式提示下查看它时)发生的事情。如果这不是最Python化的方法,我深表歉意,因为我也在学习-但这确实可行。
__str__
__repr__
repr()
如果未提供任何__str__方法,Python将__repr__改为打印结果。如果定义__str__但没有__repr__,Python将使用你所看到的上面的__repr__,但仍使用__str__打印。