用python统计某个单词在字符串中出现的个数
时间: 2023-03-28 11:00:25 浏览: 124
您好,我可以回答这个问题。您可以使用Python中的count()函数来统计某个单词在字符串中出现的个数。例如,如果您想要统计单词“hello”在字符串“hello world, hello python”中出现的次数,可以使用以下代码:
```
string = "hello world, hello python"
count = string.count("hello")
print(count)
```
输出结果为2,表示单词“hello”在字符串中出现了2次。希望这个回答能够帮到您。
相关问题
用python循环语句,统计某个单词在字符串中出现的个数。需要包含一个if语句。
可以使用以下代码实现:
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))
用python统计某个单词出现的个数
您好,我可以回答这个问题。使用 Python 可以通过字符串的 count() 方法来统计某个单词在字符串中出现的次数。例如,如果要统计字符串 s 中单词 word 出现的次数,可以使用以下代码:
count = s.count('word')
其中 count 就是单词 word 在字符串 s 中出现的次数。希望能对您有所帮助。
阅读全文