python count例子
时间: 2023-07-10 17:37:07 浏览: 71
python计算例子
在Python中,`count()`方法可以用来统计字符串中某个子字符串出现的次数。下面是一个`count()`方法的例子:
```python
string = "Hello World"
print(string.count("o"))
```
输出结果为:
```
2
```
在这个例子中,`count()`方法统计了字符串"Hello World"中字母"o"出现的次数,最后输出结果为2。
阅读全文