用python语句编写一个能统计文档中词语词频小程序,使用jieba库分词。测试输入: 我们日常开发中,经常听到接口限流,QPS多少等等这些词。那么,什么是限流呢?在计算机网络中,限流就是控制网络接口发送或接收请求的速率。 预期输出: ('我们', 1) ('日常', 1) ('开发', 1) ('中', 2) (',', 4) ('经常', 1) ('听到', 1) ('接口', 1) ('限流', 3) ('QPS', 1) ('多少', 1) ('等等', 1) ('这些', 1) ('词', 1) ('。', 2) ('那么', 1) ('什么', 1) ('是', 1) ('呢', 1) ('?', 1) ('在', 1) ('计算机网络', 1) ('就是', 1) ('控制', 1) ('网络接口', 1) ('发送', 1) ('或', 1) ('接收', 1) ('请求', 1) ('的', 1) ('速率', 1)
时间: 2023-06-06 10:05:40 浏览: 96
用Python中的jieba对文章进行词频统计
以下是使用Python语句编写可以统计文档中词语词频的小程序的代码,使用jieba库分词。
```
import jieba
def count_words(text):
words_count = {}
words_list = jieba.cut(text)
for word in words_list:
if len(word) > 1:
words_count[word] = words_count.get(word, 0) + 1
return words_count
text = "我们日常开发中,经常听到接口限流,QPS多少等等这些词。那么,什么是限流呢?在计算机网络中,限流就是控制网络接口发送或接收请求的速率。"
words_count = count_words(text)
for word, count in words_count.items():
print((word, count))
```
预期输出结果为:
```
('我们', 1)
('日常', 1)
('开发', 1)
('中', 2)
(',', 4)
('经常', 1)
('听到', 1)
('接口', 1)
('限流', 3)
('QPS', 1)
('多少', 1)
('等等', 1)
('这些', 1)
('词', 1)
('。', 2)
('那么', 1)
('什么', 1)
('是', 1)
('呢', 1)
('?', 1)
('在', 1)
('计算机网络', 1)
('就是', 1)
('控制', 1)
('网络接口', 1)
('发送', 1)
('或', 1)
('接收', 1)
('请求', 1)
('的', 1)
('速率', 1)
```
阅读全文