Try to convert these functions into lambda functions.
def function_1(a,b):
c=a+b
return cdef function_2(a,b):
c=0
for i in range(a):
c+=2*b
return cdef function_3(a,b):
c=0
if a>3:
c=12
else:
c='Too big.'
return c