summaryrefslogtreecommitdiff
path: root/progs/a695.py
blob: 826651dd228e4840381988805faa030d55040dd9 (plain)
1
2
3
4
5
6
7
8
9
def char_frequency(str1):
    dict = {}
    for n in str1:
        keys = dict.keys()
        if n in keys:
            dict[n] += 1
        else:
            dict[n] = 1
    return dict