本文介绍了漂亮打印到文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用这个 gist's 树,现在我想弄清楚如何漂亮地打印到文件.有什么提示吗?
I'm using this gist's tree, and now I'm trying to figure out how to prettyprint to a file. Any tips?
推荐答案
你需要的是 Pretty Print pprint
模块:
What you need is Pretty Print pprint
module:
from pprint import pprint
# Build the tree somehow
with open('output.txt', 'wt') as out:
pprint(myTree, stream=out)
这篇关于漂亮打印到文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!