“Fichier JSON” Réponses codées

Lire le fichier JSON

# Python program to read JSON
# from a file
  
  
import json
  
# Opening JSON file
with open('sample.json', 'r') as openfile:
  
    # Reading from json file
    json_object = json.load(openfile)
  
print(json_object)
print(type(json_object))
Troubled Turkey

Lire le JSON à partir d'un fichier JSON

import json
with open("sample_data.json", "r") as file:
    data = json.load(read_file)
    print(data)
Impossible Impala

Fichier JSON

{
"nyelvek":[
  {"nev":"HTML", "kiterjesztes":".html"},
  {"nev":"CSS", "kiterjesztes":".css"},
  {"nev":"JavaScript", "kiterjesztes":".js"}
]
}
Code language: JSON / JSON with Comments (json)
Horrible Hamster

# Lisez le fichier JSON et imprimez également le contenu du fichier au format JSON.

# read the JSON file and also print the file content in JSON format.
with open(filename, 'r') as f:
  d = json.load(f)
  print(json.dumps(d, indent=2))
  
Impossible Impala

Réponses similaires à “Fichier JSON”

Questions similaires à “Fichier JSON”

Plus de réponses similaires à “Fichier JSON” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code