Python中的count
时间: 2023-09-27 19:06:56 浏览: 65
python中count函数简单用法
在Python中,`count()`是一个内置函数,用于计算字符串、列表或元组中特定元素出现的次数。它的语法如下:
```python
count(element)
```
其中,`element`是要计数的元素。例如,假设有一个列表 `my_list`:
```python
my_list = [1, 2, 3, 2, 4, 2, 5]
```
我们可以使用`count()`函数统计其中元素2出现的次数:
```python
count_2 = my_list.count(2)
print(count_2)
```
输出结果为:
```
3
```
这表示元素2在列表中出现了3次。`count()`函数也可以用于字符串和元组。
阅读全文