Untitled
unknown
python
a year ago
550 B
16
Indexable
import json
cadastro = """{
"name": "John Smith",
"age": 30,
"city": "New York",
"isStudent": true,
"gpa":3.5
}"""
with open ('colecoes/desafio07_criar_json/cadastro_cliente.json', 'w', encoding='utf-8') as criando_arquivo:
json.dump(cadastro,criando_arquivo)
with open ('colecoes/desafio07_criar_json/cadastro_cliente.json', encoding='utf-8') as criando_arquivo:
string_cadastro = json.load(criando_arquivo)
dicionario_cadastro = json.loads(string_cadastro)
print(dicionario_cadastro["name"])
Editor is loading...
Leave a Comment