51学通信论坛2017新版

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 2299|回复: 0
打印 上一主题 下一主题

基本词频统计

[复制链接]

 成长值: 15613

  • TA的每日心情
    开心
    2022-7-17 17:50
  • 2444

    主题

    2544

    帖子

    7万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    74104
    跳转到指定楼层
    楼主
    发表于 2019-6-23 12:57:14 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式




    代码:
    1. # CalHamlet.py
    2. def getText():
    3.     txt = open("hamlet.txt", "r").read()
    4.     txt = txt.lower()
    5.     for ch in '!"#$%&()*+,-./:;<=>?@[\\]^_‘{|}~':
    6.         txt = txt.replace(ch, " ")   #将文本中特殊字符替换为空格
    7.     return txt
    8. hamletTxt = getText()
    9. words  = hamletTxt.split()
    10. counts = {}
    11. for word in words:
    12.     counts[word] = counts.get(word,0) + 1
    13. items = list(counts.items())
    14. items.sort(key=lambda x:x[1], reverse=True)
    15. for i in range(10):
    16.     word, count = items[i]
    17.     print ("{0:<10}{1:>5}".format(word, count))
    复制代码
    结果:
    1. the        1138
    2. and         965
    3. to          754
    4. of          669
    5. you         550
    6. i           542
    7. a           542
    8. my          514
    9. hamlet      462
    10. in          436
    复制代码

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有帐号?立即注册

    x
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|手机版|小黑屋|51学通信技术论坛

    GMT+8, 2025-1-31 14:51 , Processed in 0.090968 second(s), 33 queries .

    Powered by Discuz! X3

    © 2001-2013 Comsenz Inc.

    快速回复 返回顶部 返回列表