我正在尝试漂亮地打印字典,但是我没有运气:

>>> import pprint
>>> a = {'first': 123, 'second': 456, 'third': {1:1, 2:2}}
>>> pprint.pprint(a)
{'first': 123, 'second': 456, 'third': {1: 1, 2: 2}}

我希望输出在多行中,如下所示:
{'first': 123,
 'second': 456,
 'third': {1: 1,
           2: 2}
}

pprint 可以这样做吗?如果不是,那么它是哪个模块?我正在使用Python 2.7.3

最佳答案

使用width=1width=-1:

In [33]: pprint.pprint(a, width=1)
{'first': 123,
 'second': 456,
 'third': {1: 1,
           2: 2}}

关于python - pprint字典多行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20171392/

10-12 18:45