Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

filter function in python

nums1 = [2,3,5,6,76,4,3,2]

def bada(num):
    return num>4 # bada(2) o/p: False, so wont return.. else anything above > value returns true hence filter function shows result  

filters = list(filter(bada, nums1))
print(filters)
 
(or) 
 
bads = list(filter(lambda x: x>4, nums1))
print(bads)
Source by book.pythontips.com #
 
PREVIOUS NEXT
Tagged: #filter #function #python
ADD COMMENT
Topic
Name
6+5 =