Python程序:统计输入字符串中数字、大写字母、小写字母和其他字符的个数
时间: 2024-02-07 10:03:01 浏览: 74
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
可以使用 Python 中的 `isdigit()`、`isupper()`、`islower()` 等方法来判断一个字符是数字、大写字母还是小写字母。可以使用循环遍历字符串中的每个字符,统计出各个类别的字符个数。以下是一个示例代码:
```python
string = input("请输入一个字符串:")
digit_count = 0
upper_count = 0
lower_count = 0
other_count = 0
for char in string:
if char.isdigit():
digit_count += 1
elif char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
else:
other_count += 1
print("数字个数:", digit_count)
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("其他字符个数:", other_count)
```
输入一个字符串后,程序会输出该字符串中数字、大写字母、小写字母和其他字符的个数。
阅读全文