Run ❯
Get your
own
website
×
Change Orientation
def myfunc(n): return lambda a : a * n mytripler = myfunc(3) print(mytripler(11))
33