summaryrefslogtreecommitdiff
path: root/progs/a336.py
blob: 7735d02ec03f744e0c30255052abcd6312613840 (plain)
1
2
3
4
5
from collections import Counter 
def max_char(str1):
    temp = Counter(str1) 
    max_char = max(temp, key = temp.get)
    return max_char