可以使用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
列表中的每個元素分別表示對應子串在字符串中出現的次數。