有什么方法可以在不创建“包装器”函数的情况下将中缀运算符(例如+,-,*,/)用作python中的高阶函数?
def apply(f,a,b):
return f(a,b)
def plus(a,b):
return a + b
# This will work fine
apply(plus,1,1)
# Is there any way to get this working?
apply(+,1,1)
慕雪6442864
相关分类