Get the number of occurrences of each character

后端 未结 7 1547
说谎
说谎 2020-12-09 23:05

Given the string:

a=\'dqdwqfwqfggqwq\'

How do I get the number of occurrences of each character?

7条回答
  •  無奈伤痛
    2020-12-09 23:44

    You can do this:

    listOfCharac={}
    for s in a:
        if s in listOfCharac.keys():
            listOfCharac[s]+=1
        else:
            listOfCharac[s]=1
    print (listOfCharac)
    

    Output {'d': 2, 'f': 2, 'g': 2, 'q': 5, 'w': 3}

    This method is efficient as well and is tested for python3.

提交回复
热议问题