本文介绍了计算 Python 列表中真正布尔值的数量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个布尔值列表:
[True, True, False, False, False, True]
我正在寻找一种方法来计算列表中 True
的数量(因此在上面的示例中,我希望返回为 3
.)我已经找到了查找特定元素出现次数的示例,但是由于我正在使用布尔值,是否有更有效的方法来做到这一点?我正在考虑类似于 all
或 any
的东西.
and I am looking for a way to count the number of True
in the list (so in the example above, I want the return to be 3
.) I have found examples of looking for the number of occurrences of specific elements, but is there a more efficient way to do it since I'm working with Booleans? I'm thinking of something analogous to all
or any
.
推荐答案
True
等于 1
.
>>> sum([True, True, False, False, False, True])
3
这篇关于计算 Python 列表中真正布尔值的数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!