2. 定义一个函数,统计给定字符串中不同字符的个数。打印输出英文字符、数字、空格和其他字符的个数。
时间: 2024-03-22 14:27:22 浏览: 49
def count_chars(string):
chars = {}
for char in string:
if char in chars:
chars[char] += 1
else:
chars[char] = 1
english = 0
digit = 0
space = 0
other = 0
for char, count in chars.items():
if char.isalpha():
english += 1
elif char.isdigit():
digit += 1
elif char.isspace():
space += 1
else:
other += 1
print("英文字符个数:", english)
print("数字个数:", digit)
print("空格个数:", space)
print("其他字符个数:", other)
count_chars("Hello, 123 world!")
相关问题
2.定义一个函数,统计给定字符串中不同字符的个数。打印输出英文字符、数字、空格和其他字符的个数。python
代码如下:
```python
def count_chars(s):
# 初始化计数器
english_count = 0
digit_count = 0
space_count = 0
other_count = 0
# 遍历字符串中的每个字符
for c in s:
# 判断字符类型并计数
if c.isalpha():
english_count += 1
elif c.isdigit():
digit_count += 1
elif c.isspace():
space_count += 1
else:
other_count += 1
# 打印输出结果
print("英文字母个数:", english_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
使用示例:
```python
s = "Hello, world! 123#"
count_chars(s)
```
输出结果:
```
英文字母个数: 10
数字个数: 3
空格个数: 2
其他字符个数: 1
```
定义一个函数Count(),参数是一个字符串,统计给定字符串中不同字符的个数。打印输出英文字符、数字、空格和其他字符的个数
以下是Python代码实现:
```python
def Count(s):
# 定义四个计数器
letters = 0
digits = 0
spaces = 0
others = 0
# 遍历字符串,统计不同字符的个数
for c in s:
if c.isalpha():
# 如果是英文字母
letters += 1
elif c.isdigit():
# 如果是数字
digits += 1
elif c.isspace():
# 如果是空格
spaces += 1
else:
# 其他字符
others += 1
# 打印输出结果
print("英文字符个数:", letters)
print("数字个数:", digits)
print("空格个数:", spaces)
print("其他字符个数:", others)
# 测试Count()函数
s = "Hello, world! 123"
Count(s)
```
输出结果为:
```
英文字符个数: 10
数字个数: 3
空格个数: 2
其他字符个数: 2
```
阅读全文