【クラス15】JSON

7340 ワード

JSON:JavaScript Object Notation(JavaScriptオブジェクトマーク)は、軽量級のデータ交換フォーマット文字列がJSONの表現形式です.
利点:読みやすく、解析しやすく、ネットワーク伝送効率が高く、言語を超えてデータを交換する
実例一:json Ooject文字列
import json
#     json    
json_str = '{"name":"ciellee", "age":20}'
#        json        
student = json.loads(json_str)

print(type(student))
print(student)
print(student['name'])<class 'dict'>
{'name': 'ciellee', 'age': 20}
ciellee
例二:json object array
import json
#     json   
json_str = '[{"name":"ciellee","age":20,"flag":false},{"name":"XUE", "age":18}]'
#        json        
student = json.loads(json_str)

print(type(student))
print(student)<class 'list'>
[{'name': 'ciellee', 'age': 20, 'flag': False}, {'name': 'XUE', 'age': 18}]
JSONとPythonのデータタイプ変換
JSON
Python
object
プロジェクト
array
リスト
ストリングス
str
number
要点
number
float
true
True
false
False
null
ノン?ネ
アンチプログレッシブ:JSON=>Pythonプロローグ:Python=>JSON
実例三:序列化
import json
#     python -> json

student = [
    {'name':'ciellee','age':20,'flag':False},
    {'name':'XUE','age':18}
    ]

json_str = json.dumps(student)

print(type(json_str))
print(json_str)<class 'str'>
[{"name": "ciellee", "age": 20, "flag": false}, {"name": "XUE", "age": 18}]