如何使对象能够在被打印函数触发时返回其属性

发布于 2025-01-10 23:35:58 字数 430 浏览 0 评论 0原文

在Python中,如果我们打印一些对象,当打印函数触发时,它会显示它们的属性。 例如:

print(int(69)) # 69

不像我自己定义的类这样:

class Foo:
  def __init__(self,oke):
    self.oke = oke

print(Foo('yeah')) # <__main__.Foo object at 0x000001EB00CDEEB0>

为什么它不返回 oke 属性?相反,它显示对象的内存地址?

我预计输出将是:

Foo(oke='yeah')

我知道我可以定义方法 getter get_oke(),但我希望一次打印查看对象中的所有属性。

In python if we print some object, it will show their properties when triggered by print function.
For example:

print(int(69)) # 69

Unlike my own defined class like this:

class Foo:
  def __init__(self,oke):
    self.oke = oke

print(Foo('yeah')) # <__main__.Foo object at 0x000001EB00CDEEB0>

Why It doesn't return oke properties? Instead it show memory address of object?

I expect the output will be:

Foo(oke='yeah')

I know I can define method getter get_oke(), but I want see all properties in an object at once print.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆沫 2025-01-17 23:35:58

将 __repr__ 方法添加到您的类中。

来自文档

如果可能的话,这应该看起来像一个有效的 Python 表达式,可用于重新创建具有相同值的对象

class Foo:
    def __init__(self,oke):
        self.oke = oke

    def __repr__(self):
        return f'Foo(oke="{self.oke}")'


print(Foo('yeah'))  # Foo(oke="yeah")

Add a __repr__ method to your class.

From the docs

If at all possible, this should look like a valid Python expression that could be used to recreate an object with the same value

class Foo:
    def __init__(self,oke):
        self.oke = oke

    def __repr__(self):
        return f'Foo(oke="{self.oke}")'


print(Foo('yeah'))  # Foo(oke="yeah")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文