Python count
时间: 2023-11-05 22:07:59 浏览: 146
Python库 | count_api-3.1.7.tar.gz
Python中的count()是一个字符串方法,它用于计算字符串中给定子字符串出现的次数。例如,如果我们有一个字符串'str = "hello world"',那么str.count('o')将返回2,因为'o'出现了两次。另外,如果我们想要计算一个单词在一个句子中出现的次数,可以将句子用空格分割成单词列表,然后使用count()方法计算该单词在列表中出现的次数。下面是一个使用count()方法计算单词出现次数的示例:
```
sentence = "The quick brown fox jumps over the lazy dog"
word = "the"
word_count = sentence.lower().split().count(word.lower())
print(f"The word '{word}' appears {word_count} times in the sentence.")
```
输出:
```
The word 'the' appears 2 times in the sentence.
```
阅读全文