>>159
def make_f(x):
 def f(y):
  return x * y
 return f

例えばこんなのがあったとして、このmake_f()が返すものは何?