------
## 最终结论
```python
def count(bool_list):
    return bool_list.count(True)
```