224

换句话说,什么是 sprintf 等价于 pprint?

4

5 回答 5

328

pprint模块有一个名为 pformat 的命令就是为了这个目的。

从文档中:

以字符串形式返回对象的格式化表示。缩进、宽度和深度将作为格式化参数传递给 PrettyPrinter 构造函数。

例子:

>>> import pprint
>>> people = [
...     {"first": "Brian", "last": "Kernighan"}, 
...     {"first": "Dennis", "last": "Richie"},
... ]
>>> pprint.pformat(people, indent=4)
"[   {   'first': 'Brian', 'last': 'Kernighan'},\n    {   'first': 'Dennis', 'last': 'Richie'}]"
于 2009-02-06T18:28:30.260 回答
17

假设您确实是pprintpretty-print library中获得的,那么您需要该pprint.pformat方法。

如果你只是说 print,那么你想要str()

于 2009-02-06T18:29:47.903 回答
15
>>> import pprint
>>> pprint.pformat({'key1':'val1', 'key2':[1,2]})
"{'key1': 'val1', 'key2': [1, 2]}"
>>>
于 2011-06-24T19:30:38.823 回答
14

你在找pprint.pformat吗?

于 2009-02-06T18:29:14.173 回答
10

像这样的东西:

import pprint, StringIO

s = StringIO.StringIO()
pprint.pprint(some_object, s)
print s.getvalue() # displays the string 
于 2009-02-06T18:30:04.377 回答