Pass list as a parameter to lambda function || Lambda Function || Python
In this we are going to see a basic program on passing list as a parameter to lambda function in Python Programming Language.


x = lambda x: list(map(print, x))
x([[1,2,3],[4,5,6]])

# Coded by Saahil

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post