JSONデータを読み込む

import json

def read_json(file_path):
    with open(file_path, 'r') as file:
        return json.load(file)

関数説明

JSONファイルからデータを読み込み、Pythonオブジェクトに変換する関数

引数説明

JSONファイルのパス(文字列)

返り値説明

Pythonオブジェクト
funky Dec. 16, 2023, 1:03 p.m.