Python基础——count()方法
count() 方法用于统计字符串里某个字符串出现的次数。
语法
str.count(sub, start= 0,end=len(string))
sub —— 搜索的子字符串
start —— 字符串开始搜索的位置。默认为第一个字符,第一个字符索引值为 0 。
end —— 字符串中结束搜索的位置。字符串中第一个字符的索引为 0 。默认为字符串的最后一个位置。
返回值
该方法返回子字符串在字符串中出现的次数。
示例
str = "this is string example...wow!!!"
print(str.count("i"))
print(str.count("i",4,40))
print(str.count("wow"))