Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะแปลงข้อมูล JSON เป็นวัตถุ Python ได้อย่างไร


โค้ดต่อไปนี้แปลงวัตถุ json (สตริง) เป็นวัตถุหลาม (พจนานุกรม) เรานำเข้าโมดูล json และใช้วิธี json.loads() เพื่อทำสิ่งนี้

ตัวอย่าง

import json
json_string = '{"name":"Sonali", "age": 21, "designation":" Software developer"}'
print type (json_string)
def func(strng):
    a =json.loads(strng)
    print type(a)
    print a
func(json_string)

ผลลัพธ์

<type 'str'>
<type 'dict'>
{u'age': 21, u'name': u'Sonali', u'designation': u'Software developer'}