In this we are going to see a basic program on finding area of a rectangle using lambda function in Python Programming Language.
a = lambda l,b:l*b
l,b = map(int,input("Enter length and breadth: ").split())
print("Area of rectangle is",a(l,b))
# Coded by Saahil
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP