我有以下数据结构:
{'row_errors': {'hello.com': {'template': [u'This field is required.']}}}
当我在python中使用pprint时,我正在
{'row_errors': {'hello.com': {'template': [u'This field is required.']}}}
然而,我非常希望它像以下一样打印:
{'row_errors':
{'hello.com':
{'template': [u'This field is required.']}}}
这可以通过pprint进行配置吗? (我更喜欢pprint,因为我在jinja模板中打印它)。
答案 0 :(得分:1)