用python循环语句,统计某个单词在字符串中出现的个数。需要包含一个if语句。
时间: 2023-03-28 12:00:26 浏览: 102
Python实现统计单词出现的个数
可以使用以下代码实现:
word = "apple"
string = "I have an apple, he has an apple, she has an apple too."
count =
for w in string.split():
if w == word:
count += 1
print("单词'{}'在字符串中出现了{}次。".format(word, count))
阅读全文