【Python】JSONファイルの読み込み

python
import json

filename = "xxx.json"
with open(filename) as f:
  data = json.load(f)

関連記事