在计数Python列表真布尔数 [英] Counting the number of True Booleans in a Python List

查看:160
本文介绍了在计数Python列表真布尔数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有布尔的列表:

[True, True, False, False, False, True]

和我正在寻找一种方法来计算列表中的数(所以在上面的例子中,我要回报以 3 )。我已经找到了寻找特定元素的出现次数的例子,但有一个更有效的方式做到这一点,因为我与布尔的工作?我在想东西类似于所有任何

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.

推荐答案

等于 1

>>> sum([True, True, False, False, False, True])
3

这篇关于在计数Python列表真布尔数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆