Get your own Python server Result Size: 625 x 565
x
 
def myfunc(n):
  return lambda a : a * n
mydoubler = myfunc(2)
print(mydoubler(11))
22