发布网友 发布时间:2022-06-21 06:35
共4个回答
热心网友 时间:2024-12-03 13:15
最后一行的意思是返回函数b,使用type(a(3))可以知道返回类型type为function。热心网友 时间:2024-12-03 13:15
return b的话是一个closure,return b()的话会在调用a函数之后出错,因为b需要至少有一个argument。热心网友 时间:2024-12-03 13:16
就是俗称的decorator热心网友 时间:2024-12-03 13:16
a返回的是个函数