统计字符串中字母n的个数
时间: 2023-08-31 16:05:20 浏览: 84
统计一个字符串中某个字符的个数
4星 · 用户满意度95%
这是一个简单的Python代码,统计字符串中字母n的个数:
```
s = "Hello, world! This is a test string."
count = 0
for char in s:
if char == 'n' or char == 'N':
count += 1
print("The number of 'n' in the string is:", count)
```
输出结果为:
```
The number of 'n' in the string is: 3
```
这个代码遍历了字符串中的每个字符,如果字符是'n'或'N',则计数器加1。最后输出计数器的值,即'n'的个数。
阅读全文