Get your own website Result Size: 625 x 565
x
 
def myfunc(n):
  return lambda a : a * n
mytripler = myfunc(3)
print(mytripler(11))
33