python.通过键盘输入- -串字符串,并分别统计出字符串中大写字母、小写字母和数字的次数
时间: 2023-11-16 17:20:53 浏览: 90
统计字符串中字母和数字个数
好的,以下是 Python 代码实现:
```python
string = input("请输入一个字符串:")
upper_count = 0
lower_count = 0
digit_count = 0
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("数字个数:", digit_count)
```
这段代码首先使用 `input()` 函数获取用户输入的字符串,并保存到 `string` 变量中。然后使用 `for` 循环遍历字符串中的每个字符,如果是大写字母,就将 `upper_count` 变量加 1;如果是小写字母,就将 `lower_count` 变量加 1;如果是数字,就将 `digit_count` 变量加 1。最后使用 `print()` 函数输出统计结果。
阅读全文