Exemplos
Digite o texto aqui...














import json # a Python object (dict): python_obj = { "name": "David", "class":"I", "age": 6 } print(type(python_obj)) # convert into JSON: j_data = json.dumps(python_obj)
# result is a JSON string: print(j_data)
Digite o texto aqui...