“Python Dict to JSON” Respostas de código

Dicionário Python para JSON

import json

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

Python Dict to JSON

# app.py

import json

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

Python Dict to JSON

import json
python_data = {'name': 'Dave', 'age': 42}
json_string = json.dumps(python_data)
Pikku Siili

Respostas semelhantes a “Python Dict to JSON”

Perguntas semelhantes a “Python Dict to JSON”

Procure respostas de código populares por idioma

Procurar outros idiomas de código