python统计字符串数组中某字符串出现的次数
时间: 2023-11-11 09:07:00 浏览: 316
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
可以使用 Python 中的 count() 方法来统计字符串数组中某字符串出现的次数。count() 方法接受一个参数,即要统计的字符串,返回该字符串在数组中出现的次数。
例如:
```python
arr = ['apple', 'banana', 'orange', 'apple', 'apple']
count = arr.count('apple')
print(count) # 输出 3
```
以上代码中,arr 数组中有三个 'apple',因此 count 的值为 3。
阅读全文