Skip to content

Instantly share code, notes, and snippets.

@AbishekSuryaRS
Created July 30, 2020 16:18
def eligibility(age):
return age>=26
list_of_age = [15, 24, 25, 34, 32, 16, 19, 22, 27, 29]
age = filter(eligibility, list_of_age)
print(list(age))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment