Ответ:
inpStr = input("Введите строку: ")
# Если все буквы в нижнем реестре - можно считать что реестр игнорируется
strLower = inpStr.lower()
highestChar = " "
highestCharCount = 0
for char in strLower:
count = inpStr.count(char)
if count > highestCharCount:
highestChar = char
highestCharCount = count
print(f"Чаще всего появлялась буква '{highestChar}' ({highestCharCount} раз)")
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
inpStr = input("Введите строку: ")
# Если все буквы в нижнем реестре - можно считать что реестр игнорируется
strLower = inpStr.lower()
highestChar = " "
highestCharCount = 0
for char in strLower:
count = inpStr.count(char)
if count > highestCharCount:
highestChar = char
highestCharCount = count
print(f"Чаще всего появлялась буква '{highestChar}' ({highestCharCount} раз)")