Think Twice
IT技術メモ | プログラミング逆引きのメモ
Created: 2022-03-27 / Updated: 2022-03-27

JSONの読み込み


目次


PythonでJSONの読み込み

テキストから読み込み

Copy
import json

# JSON文字列
s = f"""{{
    "a": "100",
    "b": {{
        "c": "def"
    }}
}}
"""
# JSON文字列 → JSONデータへ
json_data = json.loads(s)
print(json_data)
print(type(json_data))
出力結果
Copy
{'a': '100', 'b': {'c': 'def'}}
<class 'dict'>

サンプルソース

参考サイト


参考

参考サイト

関連メモ