python_lambda_triple.py:
x
 
def myfunc(n):
  return lambda a : a * n
mytripler = myfunc(3)
print(mytripler(11))