计算字符串 str.count() 中子字符串的出现次数

astring = 'thisisashorttext'
astring.count('t')
# Out: 4

这适用于长度超过一个字符的子字符串:

astring.count('th')
# Out: 1
astring.count('is')
# Out: 2
astring.count('text')
# Out: 1

这对于只计算单个字符的 collections.Counter 是不可能的:

from collections import Counter
Counter(astring)
# Out: Counter({'a': 1, 'e': 1, 'h': 2, 'i': 2, 'o': 1, 'r': 1, 's': 3, 't': 4, 'x': 1})