このページの2つのバージョン間の差分を表示します。
次のリビジョン | 前のリビジョン | ||
15_python:03_json [2019/08/05 08:03] – 作成 matsui | 15_python:03_json [2019/08/05 08:09] (現在) – matsui | ||
---|---|---|---|
行 23: | 行 23: | ||
</ | </ | ||
- | ===== 書き出し ===== | + | ===== ファイルに書き出し ===== |
< | < | ||
行 32: | 行 32: | ||
</ | </ | ||
- | {{tag>json}} | + | ===== Pythonオブジェクトを文字列に変換 ===== |
+ | |||
+ | < | ||
+ | import json | ||
+ | jsn = json.dumps(data) | ||
+ | print(jsn) | ||
+ | </ | ||
+ | |||
+ | {{tag>python}} |