Python中计算字符串中某个字符个数的4种方法 By Moky Mar 18 2015 Updated:May 11 2015 Contents 1. 方法一2. 方法二3. 方法三4. 方法四 原创作品,允许转载。转载时请务必以超链接形式标明文章原始出处、作者信息和本声明,否则将追究法律责任。 方法一 12s = "abacad"print s.count("a") 方法二 123import recount = len(re.findall("a","abacad"))print(count) 方法三 1234from collections import Counters = "abacad"c = Counter(s)print c['a'] 方法四 1print len([ele for ele in 'abacad' if ele == 'a'])