Created
October 27, 2020 11:20
-
-
Save Kush1101/7f59c245d6fa37739e2aa6b6e80ed869 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
from itertools import filterfalse | |
iterable = [1, 3, 5, 7, 2, 4, 6, 9, 11] | |
predicate = lambda x: x%2==0 | |
for i in filterfalse(predicate, iterable): | |
print(i, end = ' ') | |
# OUTPUT | |
""" | |
1 3 5 7 9 11 | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment