#Rewrite the following code to be more concise by replacing the module_2 function with a lambda expression.
def is_a_lambda(v):
LAMBDA = lambda:0
return isinstance(v, type(LAMBDA)) and v.__name__ == LAMBDA.__name__
assert is_a_lambda(lambda num: num % 2) == True