Al fin luego de mucho trabajar hemos hallado el arreglo de esta duda que muchos lectores de nuestra web tienen. Si deseas aportar alguna información no dejes de compartir tu comentario.
Ejemplo: python deserializar 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 : # 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 :
Valoraciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)