Salvando dados Python em JSON com json

This commit is contained in:
Luiz Otávio
2022-11-10 08:45:12 -03:00
parent a085acf222
commit 6a352ad20e
2 changed files with 52 additions and 0 deletions

24
aula117.json Normal file
View File

@@ -0,0 +1,24 @@
{
"nome": "Luiz Otávio 2",
"sobrenome": "Miranda",
"enderecos": [
{
"rua": "R1",
"numero": 32
},
{
"rua": "R2",
"numero": 55
}
],
"altura": 1.8,
"numeros_preferidos": [
2,
4,
6,
8,
10
],
"dev": true,
"nada": null
}