“JSON TO DICCIONARIO” Código de respuesta

Diccionario de Python a JSON

import json

appDict = {
  'name': 'messenger',
  'playstore': True,
  'company': 'Facebook',
  'price': 100
}
app_json = json.dumps(appDict)
print(app_json)
Troubled Teira

JSON TO DICCIONARIO

import json 
    
# JSON string 
employee ='{"id":"09", "name": "Nitin", "department":"Finance"}'
    
# Convert string to Python dict 
employee_dict = json.loads(employee) 
print(employee_dict) 
    
print(employee_dict['name'])
Perfect Pygmy

Respuestas similares a “JSON TO DICCIONARIO”

Preguntas similares a “JSON TO DICCIONARIO”

Más respuestas relacionadas con “JSON TO DICCIONARIO” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código