python统计不重复的单词个数
时间: 2023-10-30 14:05:08 浏览: 227
Python统计单词出现的次数
您好!我理解您的问题是关于Python如何统计不重复的单词个数。这可以通过以下代码实现:
```python
text = "This is a sample sentence to count the number of unique words."
words = text.split()
unique_words = set(words)
num_unique_words = len(unique_words)
print("Number of unique words:", num_unique_words)
```
请注意,以上代码会将所有单词都转换为小写字母,并且标点符号将被视为单词的一部分。如果您需要将其作为函数并应用于其他文本,请参考以下示例代码:
```python
def count_unique_words(text):
words = text.lower().split()
unique_words = set(words)
num_unique_words = len(unique_words)
return num_unique_words
text = "This is a sample sentence to count the number of unique words."
num_unique_words = count_unique_words(text)
print("Number of unique words:", num_unique_words)
```
希望我的解答能够帮助您!
阅读全文