Python Square Function using Lambda Function || Python
In this we are going to see a basic program to print square of a number using lambda function in Python Programming Language.



p = lambda a,n : a**n
a=2
n=6
print(f"{a} raised to {n} is {p(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