如何使用python找出中出现字符串的最多字符并返回对应字符以及次数

2022-04-13sad creeper

分析: 可以充分利用 python中字典的键不可重复 的特点入手

1. 字符串中的字符作为字典的键,字符出现的次数作为值

2.统计每个字符在字符串中出现的次数,利用函数len(),统计出来的次数作为字典的键的值

3. 把每个字典 对应的 键:值 放入列表,组成一个二维列表 ;方便取出值 排序

4. 利用冒泡排序 比较相邻的元素。如果第一个比第二个大 ,把 值最大的放在第一位

代码展示

# 利用字典 的的键有不重复的特点
def get_max_count_str(str):
str_d = {}
for i in str:
# 统计单个字符在字符串中出现的次数
str_count=str.count(i)
str_d[i] = str_count
print(str_d)
str_list = []
for i, v in str_d.items():
str_list.append((i, v))
print(str_list)
print(len(str_list))
# print('----第三步')
for i in range(len(str_list)-1):
for j in range(i+1,len(str_list)):
# print('-------')
if str_list[i][1] < str_list[j][1]:
str_list[i],str_list[j] = str_list[j],str_list[i]

return str_list[0][0],str_list[0][1]

print(get_max_count_str('aacccccvbbbbbbbbani您好您好您'))

运行结果:

{'a': 3, 'c': 5, 'v': 1, 'b': 8, 'n': 1, 'i': 1, '您': 3, '好': 2}

[('a', 3), ('c', 5), ('v', 1), ('b', 8), ('n', 1), ('i', 1), ('您', 3), ('好', 2)]

8

('b', 8)

阅读 1713 评论


p

priligy dapoxetine review

Wow, marvelous blog format! How lengthy have you ever been blogging for? you made running a blog glance easy. The entire look of your website is magnificent, let alone the content material!

1个月前 ·