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")))