파일 에이 JSON이 있습니다.
{
"maps": [
{
"id": "blabla",
"iscategorical": "0"
},
{
"id": "blabla",
"iscategorical": "0"
}
],
"masks": [
"id": "valore"
],
"om_points": "value",
"parameters": [
"id": "valore"
]
}
이 스크립트를 작성하여 모든 JSON 데이터를 인쇄했습니다.
import json
from pprint import pprint
with open('data.json') as f:
data = json.load(f)
pprint(data)
이 프로그램은 다음과 같은 예외를 발생시킵니다.
Traceback (most recent call last):
File "<pyshell#1>", line 5, in <module>
data = json.load(f)
File "/usr/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python3.5/json/decoder.py", line 355, in raw_decode
obj, end = self.scan_once(s, idx)
json.decoder.JSONDecodeError: Expecting ',' delimiter: line 13 column 13 (char 213)
JSON을 구문 분석하고 값을 추출하는 방법은 무엇입니까?