用python编程:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。(string[i].isspace()、string[i].isdigit()、string[i].isalpha()分别代表空格、数字和英文字母)
时间: 2024-05-01 10:22:12 浏览: 39
可以使用以下代码实现:
```python
string = input("请输入一行字符:")
letter_count = 0
space_count = 0
digit_count = 0
other_count = 0
for i in range(len(string)):
if string[i].isspace():
space_count += 1
elif string[i].isdigit():
digit_count += 1
elif string[i].isalpha():
letter_count += 1
else:
other_count += 1
print("英文字母个数:", letter_count)
print("空格个数:", space_count)
print("数字个数:", digit_count)
print("其它字符个数:", other_count)
```
运行后,输入一行字符,即可得到该行字符中英文字母、空格、数字和其它字符的个数统计结果。
相关问题
编程:输入一行字符,统计出其中字母、空格、数字和其它字符的个数。Python
你可以使用Python编写一个简单的程序来实现这个功能。这里是一个例子:
```python
def count_chars(input_string):
# 定义一个字典来存储字符类型的计数
char_count = {'letters': 0, 'spaces': 0, 'digits': 0, 'other': 0}
for char in input_string:
if char.isalpha():
char_count['letters'] += 1
elif char.isspace():
char_count['spaces'] += 1
elif char.isdigit():
char_count['digits'] += 1
else:
char_count['other'] += 1
return char_count
input_string = input("请输入一行字符: ")
result = count_chars(input_string)
print(f"字母数量: {result['letters']}")
print(f"空格数量: {result['spaces']}")
print(f"数字数量: {result['digits']}")
print(f"其他字符数量: {result['other']}")
输入一行字符分别统计出其中英文字母空格数字和其他字符的个数
如果要统计一行字符中分别有多少英文字母、空格、数字和其他字符,可以使用 Python 中的字符串方法和正则表达式来实现。例如:
```
import re
text = "This is a text 123!@#"
letter_count = len(re.findall("[a-zA-Z]", text))
space_count = len(re.findall("\s", text))
digit_count = len(re.findall("\d", text))
other_count = len(re.findall("[^a-zA-Z0-9\s]", text))
print("letter count:", letter_count)
print("space count:", space_count)
print("digit count:", digit_count)
print("other count:", other_count)
```
上面代码中
- `letter_count` 使用了正则表达式 `[a-zA-Z]` 来匹配所有的字母,使用 `len(re.findall("[a-zA-Z]", text))` 来统计字母的个数。
- `space_count` 使用了正则表达式 `\s` 来匹配所有的空格,使用 `len(re.findall("\s", text))` 来统计空格的个数。
- `digit_count` 使用了正则表达式 `\d` 来匹配所有的数字,使用 `len(re.findall("\d", text))` 来统计数字的个数。
- `other_count` 使用了正则表达式 `[^a-zA-Z0-9\s]` 来匹配所有除了字母、数字、空格以外的字符,使用 `len(re.findall("[^a-zA-Z0-9\s]", text))` 来统计其他字符的个数。
请注意,上面代码只是一个简单的例子,在实际使用中可能需要根据具体需下面是一个 Python 程序,可以统计出输入字符串中各类字符的个数:
```
import string
s = input("请输入一行字符:")
letter_count = 0
space_count = 0
digit_count = 0
other_count = 0
for c in s:
if c.isalpha():
letter_count += 1
elif c.isspace():
space_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
print("英文字母个数:", letter_count)
print("空格个数:", space_count)
print("数字个数:", digit_count)
print("其他字符个数:", other_count)
```
请注意,这段程序只能统计英文字母。如果要统计中文字符,需要额外添加判断。
阅读全文