Python Lambda For Loop || Lambda Function || Python
In this we are going to see a basic program on for loop in lambda function in Python Programming Language.


a = lambda b: [i*b for i in range(1,b+1)]
n = int(input("Enter number: "))
print(a(n))

# 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