Guest User

Untitled

a guest
Jan 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. [{'nome': 'ana', 'cpf': '1000', 'endereco': 'rua xxxx'}, {'nome': 'carlos', 'cpf': '7770', 'endereco': 'Rua aaaa'}]
  2.  
  3. nome = input("Digite o nome que deseja buscar: ")
  4. for i in range(0, len(cl_cadastrados)):
  5. cl = cl_cadastrados[i]
  6.  
  7. if (nome == cl['nome']):
  8. ...
  9. ...
Add Comment
Please, Sign In to add comment