C all_of的Python版本
作者:互联网
有没有更好的方法(使用内置函数)来重写下面的代码:
def all_of(iterable, predicate):
for elem in iterable:
if not predicate(elem):
return False
return True
解决方法:
all
是内置的:
all(predicate(e) for e in iterable)
我不认为定义这样的东西是值得的:
def all_of(iterable, predicate):
return all(predicate(e) for e in iterable)
标签:built-in,python,c 来源: https://codeday.me/bug/20190729/1568231.html