0
我有一個str和一個str列表,並且想要計算列表在str中出現的次數。我該如何解決這個問題?如何統計字符串中字符串列表的出現次數 - python新增
我已經試過這樣:
def count_from_word_list(s,l):
"""(str,list of str) -> int
Return the total number of times l appears in the s
"""
counter = 0
for item in s.split():
for item in l:
if s == l:
counter= counter + 1
return counter
你試圖使用計數器? –
是的,我沒有工作 – Kev