从键盘输入一行字符,编写一个程序,统计并输出其中英文字符、数字、空格和其他字符的个数。python
时间: 2024-05-09 15:18:12 浏览: 145
统计键盘输入字符、数字个数.zip
好的,这是一个计算字符个数的问题,以下是Python代码,可以求解:
```python
string = input("请输入字符串:")
letters = 0
digits = 0
spaces = 0
others = 0
for i in string:
if i.isalpha():
letters += 1
elif i.isdigit():
digits += 1
elif i.isspace():
spaces += 1
else:
others += 1
print("英文字符有%s个,数字有%s个,空格有%s个,其他字符有%s个" % (letters, digits, spaces, others))
```
我希望这份代码能够帮助到你。
阅读全文