Skip to content

Instantly share code, notes, and snippets.

@OtavioBraga
Last active June 5, 2018 22:10
Show Gist options
  • Save OtavioBraga/8c3fcb0b244c305e0031f552149dae11 to your computer and use it in GitHub Desktop.
Save OtavioBraga/8c3fcb0b244c305e0031f552149dae11 to your computer and use it in GitHub Desktop.
# Crie a função que irá filtrar a lista
def users_over_27(user):
return user["age"] > 27
# Filtramos os usuários utilizando o método filter
filtered_users = filter(users_over_27, users)
list(filtered_users)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment