gpt4 book ai didi

python - 增加数组元素测试的表现力

转载 作者:太空狗 更新时间:2023-10-30 02:49:14 24 4
gpt4 key购买 nike

我喜欢 Python,因为它的表现力很强。不过,我无法将所有内容都表达得如我所愿。例如我经常写的这个:

  def is_everything_okay(some_array):
for s in some_array:
if not is_okay(s):
return False
return True

但 Java 比 Python 更重要。如何提高该代码片段的表现力(可能还有执行速度)?

最佳答案

使用内置函数all() :

all(is_okay(s) for s in some_array)

关于python - 增加数组元素测试的表现力,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9184879/

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