Python 字符串 count() 方法
示例
返回字符串中 "apple" 出现的次数
txt = "I love apples, apple are my favorite fruit"
x = txt.count("apple")
print(x)
自己试一试 »
定义和用法
The count()
方法返回指定值在字符串中出现的次数。
语法
string.count(value, start, end)
参数值
参数 | 描述 |
---|---|
value | 必需。字符串。要搜索的字符串值 |
start | 可选。整数。开始搜索的位置。默认值为 0 |
end | 可选。整数。结束搜索的位置。默认值为字符串的末尾 |
更多示例
示例
从位置 10 到 24 搜索
txt = "I love apples, apple are my favorite fruit"
x = txt.count("apple", 10, 24)
print(x)
自己试一试 »