gpt4 book ai didi

python - 如何在 ipython 控制台中定义类输出

转载 作者:行者123 更新时间:2023-11-28 22:12:20 25 4
gpt4 key购买 nike

假设我有以下代码:

class PrintStuff:
def __init__(self,stuff):
self._stuff = stuff

def __str__(self):
return self._stuff

如果我在 ipython 中创建它的一个实例并键入实例的名称,它会打印出类的名称及其在内存中的位置。但是,如果我将实例放入打印函数中,它会按预期打印出来:

pstuff = PrintStuff('print this stuff')

pstuff
Out[44]: <__main__.PrintStuff at 0x7fae0531de80>

print(pstuff)
print this stuff

我将如何着手制作它以便 ipython 控制台打印与打印功能相同的内容?例如, Pandas 系列具有我正在寻找的行为类型:

series = pd.Series({'x':[1,2],'y':[2,3],'z':[3,4]})

series
Out[47]:
x [1, 2]
y [2, 3]
z [3, 4]
dtype: object

print(series)
x [1, 2]
y [2, 3]
z [3, 4]
dtype: object

最佳答案

您需要添加一个 __repr__ :

默认情况下,对象 __repr__返回类型和内存地址,这是您在控制台输出时看到的(例如):

<__main__.PrintStuff at 0x7fae0531de80>

重载 __repr__ 之后,您可以控制输出内容。

class PrintStuff:
def __init__(self,stuff):
self._stuff = stuff

def __str__(self):
return self._stuff

def __repr__(self):
return str(self)


pstuff = PrintStuff('print this stuff')
pstuff

输出:

print this stuff

关于python - 如何在 ipython 控制台中定义类输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54975491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com