输入一个字符串找到出现次数最多的字符
时间: 2023-10-08 22:04:02 浏览: 67
一个字符串中出现次数最多的字符 统计这个次数【实现代码】
好的,我明白了。关于你的问题,我可以提供以下代码,可以找到输入字符串中出现次数最多的字符:
```
def most_frequent_char(str):
dict = {}
max_char = ''
max_count = 0
for char in str:
if char in dict:
dict[char] += 1
else:
dict[char] = 1
if dict[char] > max_count:
max_char = char
max_count = dict[char]
return max_char
input_str = input("请输入字符串:")
result = most_frequent_char(input_str)
print("出现次数最多的字符是:", result)
```
你可以将需要查找的字符串输入进去,程序会输出出现次数最多的字符。希望能够帮到你。
阅读全文