lambda python
add = lambda a, b : a + b
add(3,6) ## 9
lambda and function in python
Table = lambda Table_of,Multiply_by: (Table_of*Multiply_by)
print("3 * 9 = ",Table(3,9))
def Concatinate(first_name, last_name):
return first_name + " " + last_name
print("Concatinate using functions your name is:- {}".format(Concatinate("Harit","rai")))
lambda in python
#multiplication using python
multiplication = lambda num, num2 : num * num2
print(multiplication(20,7))
lambda functions python
remainder = lambda num: num % 2
print(remainder(5))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us