def createmultipier(x): return lambda y: y*x multiply= createmultipier(10) print(multiply(15))
在这里 multiply 是一个变量,那么他是如何给它赋值的,它是如何工作的?
multiply