Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created December 10, 2021 07:41
Show Gist options
  • Save pralabhsaxena05/ba913af13d9ed035590dff5aef53aa0a to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/ba913af13d9ed035590dff5aef53aa0a to your computer and use it in GitHub Desktop.
#Lambda function
ages = [33, 90, 17, 15, 21, 60, 5]
adults = list(filter(lambda age: age>=18, ages))
print(adults)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment