python列表元素数量统计
时间: 2023-03-24 12:01:18 浏览: 191
python:批量统计xml中各类目标的数量案例
要用Python统计列表元素数量,可以使用内置函数len()。
例如,如果有一个列表x,可以使用以下代码计算其元素数量:
```python
x = [1, 2, 3, 4, 5]
length = len(x)
print(length) # 输出:5
```
如果你想计算列表中特定元素的数量,可以使用列表的count()方法。例如,要计算列表x中元素2的数量,可以使用以下代码:
```python
x = [1, 2, 3, 2, 4, 5, 2]
count = x.count(2)
print(count) # 输出:3
```
这将输出列表x中元素2的数量,即3。
阅读全文