■ pprint 함수를 사용해 데이터를 출력하는 방법을 보여준다.
※ pprint 함수는 복잡한 데이터 구조를 읽기 쉽게 정렬하여 출력하므로, 디버깅이나 로그 출력을 할 때 매우 유용하다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import json from pathlib import Path from pprint import pprint posixPath = Path("settings.json") jsonString = posixPath.read_text() dictionary = json.loads(jsonString) pprint(dictionary) """ {'MainFormHeight': 690, 'MainFormLeft': 0, 'MainFormState': 'Maximized', 'MainFormTop': 0, 'MainFormWidth': 920, 'RibbonMinimized': True, 'SidebarCollapsable': True, 'SidebarStyle': 'NavigationPane', 'SidebarVisible': True, 'SidebarWidth': 100, 'SkinStyle': 'Office 2016 Colorful'} """ |