IPython 노트북의 예쁜 JSON 포맷 다른 방법이 있나요?json.dumps()출력은 ipython 노트북에서 "예쁜" 형식의 JSON으로 표시됩니까? json.dumps가 있다indent인수, 결과 인쇄로 충분합니다. print(json.dumps(obj, indent=2)) 이것은 OP가 요구한 것과 약간 다를 수 있지만,IPython.display.JSON인터랙티브하게 JSON을 표시하다dict물건. from IPython.display import JSON JSON({'a': [1, 2, 3, 4,], 'b': {'inner1': 'helloworld', 'inner2': 'foobar'}}) 편집: 이것은 Hydrogen과 JupyterLab에서는 동작하지만, Jupyter노트북이나 IPy..