Python JSON Parse
แยกวิเคราะห์ JSON - แปลงจาก JSON เป็น Python
หากคุณมีสตริง JSON คุณสามารถแยกวิเคราะห์ได้โดยใช้
json.loads()
เมธอด
ผลลัพธ์จะเป็นพจนานุกรม Python
ตัวอย่าง
แปลงจาก JSON เป็น Python:
import json
# some JSON:
x = '{ "name":"John", "age":30, "city":"New
York"}'
# parse x:
y = json.loads(x)
# the result is a
Python dictionary:
print(y["age"])