Skip to content

Commit

Permalink
Salva scripts aula 9
Browse files Browse the repository at this point in the history
See #25
  • Loading branch information
gabrielbdornas committed Sep 13, 2024
1 parent 26d905d commit 2337630
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
File renamed without changes.
46 changes: 46 additions & 0 deletions 009/dicionario.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
from pprint import pprint

dicionario = {
'zueira': 'não sei',
'casa': 'house',
'cavalo': 'horse',
'amor': 'love',
'amor': 'love222',
'amor': 'love2223',
}

pessoas = [
{
'id': 1,
'nome': 'Gabriel',
'idade': 39,
'sexo': 'm',
'profissão': 'eppgg',
'signo': 'capricórnio',
},
{
'id': 2,
'nome': 'Cora',
'idade': 22,
'sexo': 'f',
'profissão': 'eppgg',
'signo': 'peixes',
},
{
'id': 3,
'nome': 'Henrique',
'idade': 24,
'sexo': 'm',
'profissão': 'eppgg',
'signo': 'cancer',
},
]

for pessoa in pessoas:
print(f"{pessoa['id']} - {pessoa['nome']}")

pessoas_gambi = [
['gabriel', 'cora', 'henrique'],
[39, 22, 24],
['m', 'f', 'm']
]

0 comments on commit 2337630

Please sign in to comment.