源代码
def myfunc(n): return lambda a : a * n mytripler = myfunc(3) print(mytripler(11))
运行结果