我对 python 还很陌生,但还没有完全理解它的概念。最初的代码是这样的
def isSomething(s):
result=False
for f in listFunctions:
if f(s):
result=True
return result
所以我想知道是否有这样的事情
def isSomething(s):
return any(mapManyFunctions2Object(listFunctions,s))
其中 mapManyFunctions2Object() 就像但映射函数的可迭代列表和一个对象。
是否有任何标准函数可以替换 mapManyFunctions2Object() ?