可以使用count()
方法来统计字符串中子串出现的次数。count()
方法接受一个子串作为参数,并返回子串在字符串中出现的次数。
例如,统计字符串"apple"
中字母p
出现的次数:
s = "apple"
count = s.count("p")
print(count) # 输出: 2
另外,如果要统计字符串中多个子串同时出现的次数,可以使用循环遍历的方式来实现:
s = "apple"
substrings = ["p", "e"]
counts = [s.count(substring) for substring in substrings]
print(counts) # 输出: [2, 2]
这样,counts
列表中的每个元素分别表示对应子串在字符串中出现的次数。