import re from collections import Counter
def checkio(text: str) -> str:
count = Counter(re.findall("[a-z]", text.lower())) maxmm = max(count, key=count.get) return maxmm