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'}