有没有一个漂亮的Python数据打印机?

发布于 2024-07-05 17:37:20 字数 310 浏览 11 评论 0原文

交互地使用 python,有时需要显示一些任意复杂的数据结构的结果(如带有嵌入列表的列表等) 显示它们的默认方式只是一个巨大的线性转储,它会一遍又一遍地循环,您必须仔细解析才能阅读它。

有没有什么东西可以接受任何Python对象并以更合理的方式显示它。 例如,

[0, 1,
    [a, b, c],
    2, 3, 4]

而不是:

[0, 1, [a, b, c], 2, 3, 4]

我知道这不是一个很好的例子,但我想你明白了。

Working with python interactively, it's sometimes necessary to display a result which is some arbitrarily complex data structure (like lists with embedded lists, etc.)
The default way to display them is just one massive linear dump which just wraps over and over and you have to parse carefully to read it.

Is there something that will take any python object and display it in a more rational manner. e.g.

[0, 1,
    [a, b, c],
    2, 3, 4]

instead of:

[0, 1, [a, b, c], 2, 3, 4]

I know that's not a very good example, but I think you get the idea.

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

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

发布评论

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

评论(4

哭了丶谁疼 2024-07-12 17:37:20

有时 YAML 对此很有用。

import yaml
a = [0, 1, ['a', 'b', 'c'], 2, 3, 4]
print yaml.dump(a)

生产:

- 0
- 1
- [a, b, c]
- 2
- 3
- 4

Somtimes YAML can be good for this.

import yaml
a = [0, 1, ['a', 'b', 'c'], 2, 3, 4]
print yaml.dump(a)

Produces:

- 0
- 1
- [a, b, c]
- 2
- 3
- 4
ま柒月 2024-07-12 17:37:20
from pprint import pprint
a = [0, 1, ['a', 'b', 'c'], 2, 3, 4]
pprint(a)

请注意,对于像我的示例这样的简短列表,pprint 实际上会将其全部打印在一行上。 然而,对于更复杂的结构,它可以很好地打印漂亮的数据。

from pprint import pprint
a = [0, 1, ['a', 'b', 'c'], 2, 3, 4]
pprint(a)

Note that for a short list like my example, pprint will in fact print it all on one line. However, for more complex structures it does a pretty good job of pretty printing data.

天冷不及心凉 2024-07-12 17:37:20

另一个不错的选择是使用 IPython,它是一个交互式环境,具有许多额外功能,包括自动漂亮的打印、制表符完成方法、轻松的 shell 访问等等。 它也非常容易安装。

IPython 教程

Another good option is to use IPython, which is an interactive environment with a lot of extra features, including automatic pretty printing, tab-completion of methods, easy shell access, and a lot more. It's also very easy to install.

IPython tutorial

ペ泪落弦音 2024-07-12 17:37:20

除了pprint.pprint之外,pprint.pformat对于制作可读的__repr__也非常有用。 我的复杂 __repr__ 通常看起来像这样:

def __repr__(self):
    from pprint import pformat

    return "<ClassName %s>" % pformat({"attrs":self.attrs,
                                       "that_i":self.that_i,
                                       "care_about":self.care_about})

In addition to pprint.pprint, pprint.pformat is really useful for making readable __repr__s. My complex __repr__s usually look like so:

def __repr__(self):
    from pprint import pformat

    return "<ClassName %s>" % pformat({"attrs":self.attrs,
                                       "that_i":self.that_i,
                                       "care_about":self.care_about})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文