Answers for "lambda map function"

2

filter function using lambda in python

#filter function 

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


bads = list(filter(lambda x: x>4, nums1))
print(bads)
Posted by: Guest on August-07-2020
8

map function using lambda in python

# Map function 

nums1 = [2,3,5,6,76,4,3,2]
sq = list(map(lambda a : a*a, nums1))
print(sq)
Posted by: Guest on August-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language