“Файл json” Ответ

Прочтите файл 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

Чтение JSON из файла JSON

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

Файл json

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

# Прочтите файл JSON, а также распечатайте содержимое файла в формате 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

Ответы похожие на “Файл json”

Вопросы похожие на “Файл json”

Больше похожих ответов на “Файл json” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования