你想要美化一個深度嵌套的Python進,實現以下輸出:
key1 value1 value2 key2 value1 value2
但是,單獨使用pprint.PrettyPrinter() 並不能提供所需的輸出。
JSON 序列化器可以有效地處理巢狀字典。以下是如何利用它:
<code class="python">import json mydict = {'a': 2, 'b': {'x': 3, 'y': {'t1': 4, 't2': 5}}} print(json.dumps(mydict, sort_keys=True, indent=4))</code>
輸出:
{ "a": 2, "b": { "x": 3, "y": { "t1": 4, "t2": 5 } } }
以上是如何用縮排漂亮地印出嵌套字典?的詳細內容。更多資訊請關注PHP中文網其他相關文章!