编写程序,从键盘输入一行字符串,统计并输出其中英文、数字、空格和其他字符的个数。
时间: 2023-05-30 11:04:59 浏览: 92
```python
string = input("请输入一行字符串:")
letters = 0
digits = 0
spaces = 0
others = 0
for char in string:
if char.isalpha(): # 判断是否为字母
letters += 1
elif char.isdigit(): # 判断是否为数字
digits += 1
elif char.isspace(): # 判断是否为空格
spaces += 1
else: # 其他字符
others += 1
print("字母个数:", letters)
print("数字个数:", digits)
print("空格个数:", spaces)
print("其他字符个数:", others)
```
示例输出:
```
请输入一行字符串:Hello, 123 world!
字母个数: 10
数字个数: 3
空格个数: 2
其他字符个数: 2
```
相关问题
用python编写程序,从键盘输入一行字符串,统计并输出其中英文、数字、空格和其他字符的个数
```python
s = input("请输入一行字符串:")
letters = 0 # 英文字母个数
digits = 0 # 数字个数
spaces = 0 # 空格个数
others = 0 # 其他字符个数
for c in s:
if c.isalpha():
letters += 1
elif c.isdigit():
digits += 1
elif c.isspace():
spaces += 1
else:
others += 1
print("英文字母个数:", letters)
print("数字个数:", digits)
print("空格个数:", spaces)
print("其他字符个数:", others)
```
运行结果:
```
请输入一行字符串:Hello, World! 123
英文字母个数: 10
数字个数: 3
空格个数: 2
其他字符个数: 1
```
编写程序实现接收用户从键盘输入一行字符串,统计并输出其中的字母、空格和其他字符的个数。
可以使用Python编写以下程序来实现:
```python
string = input("请输入一行字符串:") # 接收用户输入
letters = 0 # 统计字母数量,初始为0
spaces = 0 # 统计空格数量,初始为0
others = 0 # 统计其他字符数量,初始为0
for char in string: # 遍历字符串中的每个字符
if char.isalpha(): # 如果是字母
letters += 1
elif char.isspace(): # 如果是空格
spaces += 1
else: # 其他字符
others += 1
print("字母数量:", letters)
print("空格数量:", spaces)
print("其他字符数量:", others)
```
运行程序后,用户可以输入一行字符串,并且程序将输出其中的字母、空格和其他字符的个数。
阅读全文