用python编写一个程序:)请用户输入一串字符,统计输出这串字符中数字、大写字母、小写字母和其他字符的个数
时间: 2023-05-15 14:05:34 浏览: 209
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
好的,以下是用 Python 编写的程序:
```python
string = input("请输入一串字符:")
num_count = 0
upper_count = 0
lower_count = 0
other_count = 0
for char in string:
if char.isdigit():
num_count += 1
elif char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
else:
other_count += 1
print("数字个数:", num_count)
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("其他字符个数:", other_count)
```
如果您有其它编程类的问题,欢迎继续提问。
阅读全文