描述
编写程序:从键盘中输入一段字符,完成以下统计并输出:
(1)该段字符中总共出现了多少种不同类型的字符;
(2)出现次数最多的前3个字符(只能为字母和数字,其它忽略)及次数?
样例
输入
ukvP^hhhhh0d~R+`],$Ls[5555555vV1<(,'Q[9}adWNdR<nZ:=Nt*SF/?-SEY
输出
总共出现了43种字符
5:7次
h:5次
d:3次
代码:
def count_char(text):# 统计字符出现次数char_count = {}for char in text:if char.isalnum():char_count[char] = char_count.get(char, 0) + 1# 统计不同类型字符数量num_of_types = len(char_count)# 找到出现次数最多的前3个字符most_common_chars = sorted(char_count.items(), key=lambda x: x[1], reverse=True)[:3]return num_of_types, most_common_chars
input_text = input("请输入一段字符:")
types, most_common = count_char(input_text)
print("不同类型的字符数量:", types)
print("出现次数最多的前3个字符及次数:")
for char, count in most_common:print(char, ":", count)
代码描述:
s = input()
- 这行代码使用
input
函数从键盘获取用户输入的一段字符,并将其赋值给变量s
。dict0 = {} dict1 = {}
- 这两行代码分别创建了两个空字典
dict0
和dict1
,用于记录字符出现的次数。all_length = 0
- 这行代码创建了一个变量
all_length
,初始化为0,用于记录总共出现的不同字符的数量。for ch in s:
- 这是一个
for
循环,遍历变量s
中的每个字符,用变量ch
表示当前字符。dict0[ch] = dict1.get(ch)
- 这行代码将字典
dict1
中对应字符ch
的值赋给字典dict0
中的键ch
,相当于将字典dict1
复制给dict0
。all_length = len(dict0)
- 这行代码更新变量
all_length
的值为字典dict0
中的键值对的数量,即不同字符的数量。if ch.isalnum():
- 这是一个
if
条件语句,判断字符ch
是否为字母或数字,使用isalnum()
方法进行判断。dict1[ch] = dict1.get(ch, 0) + 1
- 如果字符
ch
是字母或数字,则将字典dict1
中对应字符ch
的值加1。- 如果字符
ch
在字典dict1
中不存在,则使用dict1.get(ch, 0)
获取字符ch
对应的值(即出现次数),如果字符不存在于字典中,则返回默认值0。length = len(dict1)
- 这行代码计算字典
dict1
的长度,即出现过的不同字符的数量。items = list(dict1.items()) items.sort(key=lambda x: x[1], reverse=True)
- 这两行代码将字典
dict1
转换为列表,并对列表中的元素按照出现次数进行排序。dict1.items()
将字典中的键值对以元组的形式返回。sort
函数对列表中的元素进行排序,key=lambda x: x[1]
指定按照元组的第二个元素(也就是出现次数)进行排序。reverse=True
表示降序排列。top3 = items[:3]
- 这行代码将排序后的列表
items
的前三个元素赋值给变量top3
,即出现次数最多的前三个字符及其次数。print(f"总共出现了{all_length}种字符")
- 这行代码使用
for i in range(3):if i < len(top3):print(f"{top3[i][0]}:{top3[i][1]}次")
- 这部分代码使用
for
循环遍历前三个字符及其次数的列表top3
。- 使用
字符:次数
。注意,在循环中会判断变量i
是否小于top3
的长度,以防止越界访问。