用户工具



def fun(a):
   return lambda x:x ** a
fun1=fun(3)    # 返回一个函数
print fun1(2)  # 调用返回的函数