Answers for "python json deserialize into object"

0

python deserialize json

import json
 
# with json.loads   (string)
info = '{"name": "Dave","City": "NY"}'
res = json.loads(info)
print(res) 
print("Datatype of the serialized JSON data : " + str(type(res)))
#>>> {'name': 'Dave', 'City': 'NY'}
#>>> Datatype of the serialized JSON data : <class 'dict'>

# with json load  (file)
info = open('data.json',)
res = json.load(info)
print(res)
print("Datatype after deserialization : " + str(type(res)))
#>>> {'name': 'Dave', 'City': 'NY'}
#>>> Datatype of the serialized JSON data : <class 'dict'>
Posted by: Guest on April-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language