python统计字符串的个数
时间: 2024-01-04 17:46:18 浏览: 182
统计字符串个数
可以使用Python内置函数 `len()` 统计字符串的个数,该函数返回字符串的字符个数。例如,统计字符串 "hello world" 的字符个数可以这样实现:
```python
string = "hello world"
count = len(string)
print(count)
```
输出:
```
11
```
另外,还可以使用循环遍历字符串的每个字符,并统计字符的个数。例如,统计字符串 "hello world" 中字符 'o' 的个数可以这样实现:
```python
string = "hello world"
count = 0
for char in string:
if char == 'o':
count += 1
print(count)
```
输出:
```
2
```
阅读全文