Created
February 27, 2020 03:34
-
-
Save vamsitallapudi/6f7193fce4bc8612adae20751825d18c to your computer and use it in GitHub Desktop.
This file contains 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
# 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