Last active
June 5, 2018 22:10
-
-
Save OtavioBraga/8c3fcb0b244c305e0031f552149dae11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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