python中count()函数的用法
时间: 2023-09-15 10:19:57 浏览: 111
python中count函数简单用法
count()函数用于计算字符串中指定字符或子字符串的出现次数。
语法:
str.count(sub, start= 0,end=len(string))
参数说明:
sub:要计算出现次数的子字符串。
start:字符串中开始查找的位置,默认为0。
end:字符串中结束查找的位置,默认为字符串的长度。
返回值:
返回指定字符或子字符串在字符串中出现的次数。
示例:
```python
str1 = "I am an AI language model. I can help you with language tasks."
print(str1.count('a')) # 输出 8
print(str1.count('AI')) # 输出 1
```
阅读全文