怎么判断bool数组中True的个数
时间: 2023-05-23 22:05:28 浏览: 153
javascript中怎么做对象的类型判断
可以使用Python中的count()函数来统计bool数组中True的个数,示例代码如下:
```python
bool_list = [True, False, True, True, False]
true_count = bool_list.count(True)
print(true_count) # 输出结果为:3
```
或者也可以使用循环遍历数组,逐个判断元素是否为True,并计数,示例代码如下:
```python
bool_list = [True, False, True, True, False]
true_count = 0
for element in bool_list:
if element:
true_count += 1
print(true_count) # 输出结果为:3
```
两种方法都可以得到bool数组中True的个数。
阅读全文