gpt4 book ai didi

c++ - Python 版本的 C++ all_of

转载 作者:太空狗 更新时间:2023-10-29 20:14:37 24 4
gpt4 key购买 nike

有没有更好的方法(使用内置函数)重写下面这段代码:

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)

关于c++ - Python 版本的 C++ all_of,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15770666/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com