例如:
返回值“apple”出现在字符串中的次数:
txt = "I love apples, apple are my favorite fruit"
x = txt.count("apple")
print(x)
1、定义和用法
count()
方法返回指定值出现在字符串中的次数。
2、调用语法
string.count(value, start, end)
3、参数说明
参数 | 描述 |
value | 必需的参数, 一个字符串。 要搜索的值的字符串 |
start | 可选的。整数。开始搜索的位置。默认为0 |
end | 可选的。整数。结束搜索的位置。默认是字符串的结尾 |
4、使用示例
例如:
从位置10到24搜索:
txt = "I love apples, apple are my favorite fruit"
x = txt.count("apple", 10, 24)
print(x)