标签:str style class nbsp code pre log 字符 字符串
count() 用于统计字符串里某个字符出现的次数
In [5]: str = ‘abcdeaaa‘ In [6]: str.count(‘a‘) Out[6]: 4
count()
原文地址:http://www.cnblogs.com/pzk7788/p/7718788.html