统计字符串中字母数字空格和其他字符的个数
时间: 2023-04-13 11:02:58 浏览: 106
可以使用循环遍历字符串中的每一个字符,然后判断它是字母、数字、空格还是其他字符,最后统计它们的个数即可。
具体实现可以使用 Python 的内置函数 isalpha()、isdigit()、isspace() 来判断字符的类型,代码如下:
```
def count_chars(s):
alpha_count =
digit_count =
space_count =
other_count =
for c in s:
if c.isalpha():
alpha_count += 1
elif c.isdigit():
digit_count += 1
elif c.isspace():
space_count += 1
else:
other_count += 1
print("字母个数:", alpha_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
调用函数:
```
s = "Hello, World! 123"
count_chars(s)
```
输出结果:
```
字母个数: 10
数字个数: 3
空格个数: 3
其他字符个数: 2
```
相关问题
用C语言统计字符串中字母数字空格和其他字符的个数
可以使用C语言中的字符处理函数,如isdigit()、isalpha()、isspace()等来判断字符的类型,然后统计每种类型的字符出现的次数即可。具体实现如下:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int i, alpha_count = 0, digit_count = 0, space_count = 0, other_count = 0;
printf("请输入一个字符串:");
fgets(str, sizeof(str), stdin);
for (i = 0; str[i] != '\0'; i++) {
if (isalpha(str[i])) {
alpha_count++;
} else if (isdigit(str[i])) {
digit_count++;
} else if (isspace(str[i])) {
space_count++;
} else {
other_count++;
}
}
printf("字母个数:%d\n", alpha_count);
printf("数字个数:%d\n", digit_count);
printf("空格个数:%d\n", space_count);
printf("其他字符个数:%d\n", other_count);
return 0;
}
```
这里使用了fgets()函数来读取输入的字符串,因为gets()函数已经被淘汰了。
统计字符串中字母数字空格和其他字符个数
可以使用循环遍历字符串中的每个字符,然后判断它是字母、数字、空格还是其他字符,最后统计它们的个数即可。
例如,可以定义四个计数器变量,分别表示字母、数字、空格和其他字符的个数。然后使用 for 循环遍历字符串中的每个字符,根据字符的 ASCII 码值判断它属于哪一类,然后对应计数器加 1。最后输出四个计数器的值即可。
示例代码如下:
```
s = "Hello, 123 world!@#"
letter_count =
digit_count =
space_count =
other_count =
for c in s:
if c.isalpha():
letter_count += 1
elif c.isdigit():
digit_count += 1
elif c.isspace():
space_count += 1
else:
other_count += 1
print("字母个数:", letter_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
输出结果为:
```
字母个数: 10
数字个数: 3
空格个数: 3
其他字符个数: 3
```
阅读全文