输入一个字符串,分别计算其中大写字符、小写字符、数字字符和其它字符的个数
时间: 2023-06-11 08:04:30 浏览: 76
统计字符串中数字、字母和空格的个数
5星 · 资源好评率100%
好的,您可以直接输入字符串,我会帮您计算大写字符、小写字符、数字字符以及其他字符的个数。请在下方输入字符串:
(注:该代码使用 Python 编写)
```python
def calculate_char_count(str):
upper_count = 0 # 大写字符个数
lower_count = 0 # 小写字符个数
digit_count = 0 # 数字字符个数
other_count = 0 # 其他字符个数
for c in str:
if c.isupper():
upper_count += 1
elif c.islower():
lower_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
print("大写字母个数为:", upper_count)
print("小写字母个数为:", lower_count)
print("数字个数为:", digit_count)
print("其他字符个数为:", other_count)
input_str = input()
calculate_char_count(input_str)
```
请直接将字符串输入到上述代码中,即可得到大写字符、小写字符、数字字符以及其他字符的个数。
阅读全文