■ loads 함수를 사용해 JSON 문자열에서 딕셔러니 리스트를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import json from pathlib import Path path = Path("people.json") fileContent = path.read_text() dictionaryList = json.loads(fileContent) print(dictionaryList) |