分类统计字符个数,输入一行文字,统计其中的大写字母、小写字母、空格、数字以及其它字符各有多少
时间: 2023-05-25 17:05:38 浏览: 78
个。
Python代码如下:
```python
text = input("请输入一行文字:")
uppercase = 0
lowercase = 0
space = 0
digit = 0
other = 0
for char in text:
if char.isupper():
uppercase += 1
elif char.islower():
lowercase += 1
elif char.isspace():
space += 1
elif char.isdigit():
digit += 1
else:
other += 1
print("大写字母:", uppercase)
print("小写字母:", lowercase)
print("空格:", space)
print("数字:", digit)
print("其他字符:", other)
```
输出示例:
```
请输入一行文字:Hello, World! 2021
大写字母: 2
小写字母: 8
空格: 2
数字: 4
其他字符: 1
```
相关问题
分类统计字符个数,输入一行文字,统计其中的大写字母、小写字母、 空格、数字以及其它字符各有多少。试编写相应程序。
``` python
s = input("请输入一行文字:")
upper_count = 0 # 统计大写字母个数
lower_count = 0 # 统计小写字母个数
space_count = 0 # 统计空格个数
digit_count = 0 # 统计数字个数
other_count = 0 # 统计其他字符个数
for c in s:
if c.isupper(): # 判断是否为大写字母
upper_count += 1
elif c.islower(): # 判断是否为小写字母
lower_count += 1
elif c.isspace(): # 判断是否为空格
space_count += 1
elif c.isdigit(): # 判断是否为数字
digit_count += 1
else: # 其他字符
other_count += 1
print(f"大写字母个数为:{upper_count}")
print(f"小写字母个数为:{lower_count}")
print(f"空格个数为:{space_count}")
print(f"数字个数为:{digit_count}")
print(f"其他字符个数为:{other_count}")
```
样例输入:
``` python
Hello World! 123
```
样例输出:
``` python
大写字母个数为:2
小写字母个数为:8
空格个数为:2
数字个数为:3
其他字符个数为:1
```
分类统计字符个数:输入一行文字,统计其中的大写字母、小写字母、空格、数字以及其他字符各有多少。试编写相应程序。
下面是Python的实现代码:
```python
text = input("请输入一行文字:")
upper_count = 0
lower_count = 0
space_count = 0
digit_count = 0
other_count = 0
for char in text:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isspace():
space_count += 1
elif char.isdigit():
digit_count += 1
else:
other_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("空格个数:", space_count)
print("数字个数:", digit_count)
print("其他字符个数:", other_count)
```
运行结果示例:
```
请输入一行文字:Hello World! 123
大写字母个数: 2
小写字母个数: 8
空格个数: 2
数字个数: 3
其他字符个数: 1
```
阅读全文