标签: python function decorator
例如,函数'add'可以这样使用:
输入:
add(1, 2, 3, 4)
输出:
10
或输入:
add(1)(2)(3)(4)
add(1, 2)(3, 4)