0

我想将带有 UTF-8 字符串的字典写入文件。我看到另一个关于使用 pprint 打印 utf-8 字符串的线程,并尝试像这样修改那里看到的代码

MyPrettyPrinter().pprint(dict, stream=f)

但它不工作。我对 python 的类没有经验,所以我不知道在 pprint 库中重新定义什么。

4

1 回答 1

0

它应该是:

MyPrettyPrinter(stream=f).pprint(d)
于 2014-12-25T22:33:05.637 回答