Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Created February 27, 2020 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamsitallapudi/6f7193fce4bc8612adae20751825d18c to your computer and use it in GitHub Desktop.
Save vamsitallapudi/6f7193fce4bc8612adae20751825d18c to your computer and use it in GitHub Desktop.
# python program to print below average marks
marks = [100, 76, 45, 28, 52, 17, 83]
below_average = list(filter(lambda x : x<35, marks))
print(below_average)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment