【无标题】

  • 题目

已知字符串string= 'skdaskerkjsalkj',统计该字符串中各字母出现的次数

  • 代码


hh = dict()
string= 'skdaskerkjsalkj'
for i in string:
    if i not in hh.keys():
        hh[i] = 1
    else:
        hh[i] += 1
print(hh)

你可能感兴趣的:(python)