计算字符串中字符出现次数的多种方法
import re
from collections import Counter
sentence = 'Canada is located in the northern part of North America'
# Example I
counter = len(re.findall("a", sentence))
print(counter)
# Example II
counter = sentence.count('a')
print(counter)
# Example III
counter = Counter(sentence)
print(counter['a'])
Output:
6
6
6