Python中freq
时间: 2024-04-06 19:11:32 浏览: 68
Python库 | pywordfreq-0.3.1-cp38-cp38-macosx_10_7_x86_64.whl
在Python中,freq通常指的是频率(frequency)或者是字频(word frequency)。频率通常用于统计在一定时间内某个事件发生的次数。在计算机科学领域中,频率通常用于统计在一段文本中出现某个单词或字符的次数,这被称为字频。在Python中,可以通过各种方法来计算字频,比如使用字典(dictionary)或者使用Python的collections模块中的Counter类。以下是一个例子:
```python
from collections import Counter
text = "This is a sample text. It contains some words and some repeated words."
words = text.split()
word_count = Counter(words)
print(word_count)
```
输出结果为:
```
Counter({'some': 2, 'This': 1, 'is': 1, 'a': 1, 'sample': 1, 'text.': 1, 'It': 1, 'contains': 1, 'words': 1, 'and': 1, 'repeated': 1})
```
这个例子中,使用split()方法将文本分割成单词列表,然后使用Counter类统计每个单词出现的次数。最终结果以字典的形式输出,其中键为单词,值为出现次数。
阅读全文