Posts by marcus matheus • 1 point
1 post
-
-1
votes5
answers4459
viewsA: Access dictionary within a Python list
Simple! pessoas = [{'nome': 'ana', 'cpf': '1000', 'endereco': 'rua xxxx'}, {'nome': 'carlos', 'cpf': '7770', 'endereco': 'Rua aaaa'}] Suppose you want to access only the 'name':…