当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

计算字符串中字符出现次数的多种方法

  1. import re
  2. from collections import Counter
  3. sentence = 'Canada is located in the northern part of North America'
  4. # Example I
  5. counter = len(re.findall("a", sentence))
  6. print(counter)
  7. # Example II
  8. counter = sentence.count('a')
  9. print(counter)
  10. # Example III
  11. counter = Counter(sentence)
  12. print(counter['a'])

Output:

  1. 6
  2. 6
  3. 6

该分类下的相关小册推荐: