589| 5
|
[经验求助] 想求一个英文词频统计的软件 |
发表于 2023-7-26 11:26
200吾爱币
最佳答案[md]比如,可以这样写:
```python
with open("input_file.txt", "r", encoding="utf-8") as f: # 文件名请自定义
text = f.read().lower()
for chars in "!@#$%^&*()": # 这边特殊字符按需调整或直接用库
text = text.replace(chars, " ")
words = text.split()
counts = {}
for word in words:
counts[word] = counts.get(word, 0) + 1
items = list(counts.items())
items.sort(key=lambda x: x ...
| ||
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
||
发表于 2023-7-26 11:26
| ||
发表于 2023-7-26 13:08
| ||
|
发表于 2023-7-26 13:56
| ||
发表于 2023-7-26 14:29
| ||
|
发表于 2023-7-26 19:29
免费评分
| ||||||||||
RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )
GMT+8, 2024-11-23 15:20
Powered by Discuz!
Copyright © 2001-2020, Tencent Cloud.