键盎输入任意一个字符串,分别输出其中所含大与英文字母 小与英文字母、数字、和其它字符的个数;
时间: 2023-12-03 13:43:46 浏览: 192
从键盘输入一串字符,分别统计其中的字母,数字字符和其他[文].pdf
好的,请输入字符串:Hello World! 123
输出结果:
- 大写字母个数:2
- 小写字母个数:8
- 数字个数:3
- 其它字符个数:2
下面是实现该功能的 Python 代码:
```python
string = input("请输入一个字符串:")
uppercase_count = 0
lowercase_count = 0
digit_count = 0
other_count = 0
for char in string:
if char.isupper():
uppercase_count += 1
elif char.islower():
lowercase_count += 1
elif char.isdigit():
digit_count += 1
else:
other_count += 1
print("- 大写字母个数:", uppercase_count)
print("- 小写字母个数:", lowercase_count)
print("- 数字个数:", digit_count)
print("- 其它字符个数:", other_count)
```
运行代码,输入任意字符串即可得到对应的输出结果。
阅读全文