本质上,我想打印一个字典,以便它使用str()
而不是repr()
对其键和值进行字符串化。
在某些 json 中保存回溯字符串时,这将特别有用。但这似乎比我想象的要困难得多:
In [1]: import pprint, json
In [2]: example = {'a\tb': '\nthis\tis\nsome\ttext\n'}
In [3]: print(example)
{'a\tb': '\nthis\tis\nsome\ttext\n'}
In [4]: str(example)
Out[4]: "{'a\\tb': '\\nthis\\tis\\nsome\\ttext\\n'}"
In [5]: pprint.pprint(example)
{'a\tb': '\nthis\tis\nsome\ttext\n'}
In [6]: pprint.pformat(example)
Out[6]: "{'a\\tb': '\\nthis\\tis\\nsome\\ttext\\n'}"
In [7]: json.dumps(example, indent=2)
Out[7]: '{\n "a\\tb": "\\nthis\\tis\\nsome\\ttext\\n"\n}'
In [8]: print(json.dumps(example, indent=2))
{
"a\tb": "\nthis\tis\nsome\ttext\n"
}
我想要(和期望)的行为是这样的:
> print(d)
{'a b': '
this is
some text
'}
> pprint.pprint(d)
{
'a b': '
this is
some text
'
}
或者,如果 pprint 真的很聪明:
> pprint.pprint(d)
{
'a b': '
this is
some text
'
}
...但我似乎无法内置的方式来做到这一点!
我想知道执行此操作的标准/最佳方法是什么,如果没有,为什么不呢?是否有一个特殊原因repr()
总是在字符串上调用而不是str()
在打印字典(和其他容器)时调用?