python统计中文字数_用 Python 统计字数

用 Python 实现函数 count_words(),该函数输入字符串 s 和数字 n,返回 s 中 n 个出现频率最高的单词。返回值是一个元组列表,包含出现次数最高的 n 个单词及其次数,即 [(<单词1>, <次数1>), (<单词2>, <次数2>), ... ],按出现次数降序排列。

"""Count words."""

def count_words(s, n):

"""Return the n most frequently occuring words in s."""

# TODO: Count the number of occurences of each word in s

list_tmp = s.split()

list_split = list(set(list_tmp))

list_ans = []

for item in list_split:

list_ans.append((item,list_tmp.count(item)))

# TODO: Sort the occurences in descending order (alphabetically in case of ties)

list_ans = sorted(list_ans, key=lambda x:(-x[1],x[0]))

# TODO: Return the top n most frequent words.

top_n = []

for i in range(n):

top_n.append(list_ans[i])

return top_n

def test_run():

"""Test count_words() with some inputs."""

print count_words("cat bat mat cat bat cat", 3)

print count_words("betty bought a bit of butter but the butter was bitter", 3)

if __name__ == '__main__':

test_run()

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值