Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 20, 2020 23:57
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 IndhumathyChelliah/70f421f567e59523a5528495e8e6dfc5 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/70f421f567e59523a5528495e8e6dfc5 to your computer and use it in GitHub Desktop.
#Using filter function
evennumber=filter(lambda x: x%2==0,range(1,11))
#filter() returns an iterator.
print (evennumber) #Output:<filter object at 0x0144EC10>
print (list(evennumber))#Output:[2, 4, 6, 8, 10]
#Using List Comprehension
evenno=[n for n in range(1,11) if n%2==0]
print (evenno) #Output:[2, 4, 6, 8, 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment