Python count函数用法
时间: 2023-11-05 17:57:54 浏览: 79
Python count函数可以用来统计字符串中某个字符出现的次数,例如:
```python
s = "hello world"
count = s.count('l')
print(count) # 输出 3
```
该函数也可以统计子字符串出现的次数,例如:
```python
s = "hello world"
count = s.count('lo')
print(count) # 输出 1
```
希望能帮到你!还有什么问题可以问我哦。
相关问题
python count函数用法
Python中的列表count函数用于统计列表中某个元素出现的次数。其语法为:
列表.count(元素)
其中,列表为需要统计的列表,元素为需要统计的元素。
例如,统计列表[1,2,3,4,1,2,1]中元素1出现的次数,可以使用以下代码:
a = [1,2,3,4,1,2,1]
print(a.count(1))
输出结果为:
3
表示元素1在列表a中出现了3次。
python list count函数用法
Python中的list count函数用于统计列表中某个元素出现的次数。具体用法如下:
语法:list.count(obj)
参数:obj为要统计的元素
返回值:返回obj在列表中出现的次数
示例:
```
lst = [1, 2, 3, 2, 4, 2]
count = lst.count(2)
print(count) # 输出:3
```
阅读全文