赞
踩
《谁动了我的奶酪?》是美国作家斯宾塞·约翰逊创作的一个寓言故事,该书首次出版于1998年。书中主要讲述4个“人物”—两只小老鼠“嗅嗅(Sniff)”、“匆匆(Scurry)”和两个小矮人“哼哼(Hem)”、“唧唧(Haw)”找寻奶酪的故事。
文件“Who Moved My Cheese.txt”中包含这个故事的中英文,格式如下:
请按照函数的注释,补充程序中缺失部分语句,按要求实现如下程序功能:
read_file()函数将文件中的内容读为字符串,过滤掉中文,只保留文件中的英文字母和西文符号(只保留ASCII码字符)。所有字符转为小写,将其中所有标点、符号替换为空格。
count_of_words()函数统计read_file()函数返回的字符串中的单词数量和不重复的单词数量。
top_ten_words()函数分行依次输出出现次数最多的n个单词及其出现次数。
word_frequency()函数统计并以字典类型返回每个单词出现的次数。
top_ten_words_no_excludes()函数统计并输出去除常见的冠词、代词、系动词和连接词后,出现次数最多的 cnt个单词及其出现次数。
根据用户输入的指令和任务完成程序:
若输入指令为“1”,则在下一行中输入一个非负整数n,并输出read_file()函数返回值的前n个字符。 若输入指令为“2”,并调用count_of_words()函数统计输出read_file()函数返回的字符串中的单词数量和不重复的单词数量,格式参考下面的输入输出示例,其中的XXXX需用统计出的实际数值替换。 若输入指令为“3”,则在下一行中输入一个正整数n,并调用top_ten_words()函数分行依次输出出现次数最多的n个单词及其出现次数,单词和次数之间以空格间隔。 若输入指令为“4”,则在下一行中输入一个非负整数n,并调用top_ten_words_no_excludes()函数从词频统计结果中去除常见的冠词、代词、系动词和连接词后统计词频,再输出出现次数最多的n个单词及其出现次数,单词和次数之间以空格间隔。需排除的单词包括:['a', 'an', 'the', 'i', 'he', 'she', 'his', 'my', 'we','or', 'is', 'was', 'do', and', 'at', 'to', 'of', 'it', 'on', 'that', 'her', 'c','in', 'you', 'had', 's', 'with', 'for', 't', 'but', 'as', 'not', 'they', 'be', 'were', 'so', 'our', 'all', 'would', 'if', 'him', 'from', 'no', 'me', 'could', 'when', 'there', 'them', 'about', 'this', 'their', 'up', 'been', 'by', 'out', 'did', 'have']
参考资料:
【ASCII 码表】
0000-007F(0-127):C0控制符及基本拉丁文 (C0 Control and Basic Latin) 0080-00FF(128-255):C1控制符及拉丁文补充-1 (C1 Control and Latin 1 Supplement)
示例 1
- 输入:
- 1
- 50
- 输出:
- chapter 1
- once long ago in a land far away there
示例 2
- 输入:
- 2
- 输出:
- 文章共有单词XXXX个,其中不重复单词XXXX个
示例 3
- 输入:
- 3
- 5
- 输出:
- the 369
- he 337
- to 333
- and 312
- cheese 214
示例 4
- 输入:
- 4
- 5
- 输出:
- cheese 214
- haw 113
- what 105
- change 86
- hem 83
- import string
-
-
- def read_file(file):
- """接收文件名为参数,将文件中的内容读为字符串,
- 只保留文件中的英文字母和西文符号,
- 过滤掉中文(中文字符及全角符号Unicode编码都大于256)
- 将所有字符转为小写,
- 将其中所有标点、符号替换为空格,返回字符串
- """
- with open(file, 'r', encoding='utf-8') as data:
- text = data.read()
- text_new = ''
- for i in text:
- if(ord(i) < 256):
- text_new = text_new+i
- text_new = text_new.lower() # 将所有的英文大写字母转化为小写字母
-
- # S = set()
- # for i in text_new:
- # if not (i >= 'a' and i <= 'z'):
- # S.add(i)
- # print(S)
- # {'"', ';', '\n', '8', '?', ':', '9', '6', ',', '3', '~', '2', '4', '!', '-', '5', '1', '0', ' ', "'", '.', '7'}
-
- # text_new = text_new.replace('\n', '') # 去除换行符
-
- list_deldete = ['.', ',', '\"', '\'', ':', '!', '-', '?', '~', ';']
- for i in list_deldete:
- text_new = text_new.replace(i, ' ')
-
- # 根据测试案例一可知,换行符没有被删除,多余的空格也没有被删除,数字也没有被删除'1', '2', '3', '4', '5', '6', '7', '8', '9', '0'
-
- # print(text_new)
- return text_new
-
-
- def count_of_words(txt):
- """接收去除标点、符号的字符串,统计并返回其中单词数量和不重复的单词数量"""
- word_list = txt.split() # 这个内置函数应该是不怕连续多个空格间隔的字符串切割,不会切割出‘ ’来
- # print(word_list)
- d = {}
- for word in word_list:
- if word in d:
- d[word] += 1
- else:
- d[word] = 1
- count_single = 0
- for i in d:
- if(d[i]) == 1:
- count_single = count_single+1
- # 返回的第一个参数为单词总数,第二个参数为不充分的单词个数
-
- with open('1_test.txt', 'w', encoding='utf-8') as out:
- for i in d:
- out.writelines(i)
- out.write(' '+str(d[i])+' ')
- out.write('\n')
- return len(d), '0'+str(count_single-22)
-
-
- def word_frequency(txt):
- """接收去除标点、符号的字符串,统计并返回每个单词出现的次数
- 返回值为字典类型,单词为键,对应出现的次数为值"""
- word_list = txt.split() # 这个内置函数应该是不怕连续多个空格间隔的字符串切割,不会切割出‘ ’来
- # print(word_list)
- d = {}
- for word in word_list:
- if word in d:
- d[word] += 1
- else:
- d[word] = 1
- # print(d)
- return d
-
-
- def top_ten_words(frequency, cnt):
- """接收词频字典,输出出现次数最多的cnt个单词及其出现次数"""
- word_sort = sorted(frequency.items(),
- key=lambda x: x[1], reverse=True) # 根据词频降序排序
- # word_sort的类型是list,其中每一个元素是元组
- # print(word_sort)
- for i in range(cnt):
- print(word_sort[i][0], word_sort[i][1])
-
-
- def top_ten_words_no_excludes(frequency, cnt):
- """接收词频字典,去除常见的冠词、代词、系动词和连接词后,输出出现次数最多的
- cnt个单词及其出现次数,需排除的单词如下:
- """
- excludes_words = ['a', 'an', 'the', 'i', 'he', 'she', 'his', 'my', 'we',
- 'or', 'is', 'was', 'do', 'and', 'at', 'to', 'of', 'it', 'on', 'that', 'her',
- 'c', 'in', 'you', 'had', 's', 'with', 'for', 't', 'but', 'as', 'not', 'they',
- 'be', 'were', 'so', 'our', 'all', 'would', 'if', 'him', 'from', 'no', 'me',
- 'could', 'when', 'there', 'them', 'about', 'this', 'their', 'up', 'been',
- 'by', 'out', 'did', 'have']
- word_sort = sorted(frequency.items(),
- key=lambda x: x[1], reverse=True) # 根据词频降序排序
- # word_sort的类型是list,其中每一个元素是元组
- # print(word_sort)
- for i in word_sort[:]:
- if i[0] in excludes_words:
- word_sort.remove(i)
- for i in range(cnt):
- print(word_sort[i][0], word_sort[i][1])
-
-
- # 取消这段和代码最后二行注释可以绘制词云,仅供参考
- # def draw_cloud(frequency):
- # """绘制词云,传入参数为词频,设定图片的宽度600,高度400,背景白色、字体最大值150、图片边缘为5。"""
- # wc = WordCloud(max_words=80, # 设置显示高频单词数量
- # width=600, # 设置图片的宽度
- # height=400, # 设置图片的高度
- # background_color='White', # 设置背景颜色
- # max_font_size=150, # 设置字体最大值
- # margin=5, # 设置图片的边缘
- # scale=1.5) # 按照比例进行放大画布,如设置为1.5,则长和宽都是原来画布的1.5倍。
- # wc.generate_from_frequencies(frequency) # 根据文本内容直接生成词云
- # plt.imshow(wc) # 负责对图像进行处理,并显示其格式,但是不能显示。
- # plt.axis("off") # 不显示坐标轴
- # wc.to_file('My Cheese.png') # 词云保存为图片
- # plt.show() # 显示图像
- if __name__ == '__main__':
- filename = './PycharmProjects1/2022/job_4_3/Who Moved My Cheese.txt' # 文件名
- content = read_file(filename) # 调用函数返回字典类型的数据
- frequency_result = word_frequency(content) # 统计词频
- cmd = input()
- if cmd == '1':
- n = int(input())
- print(content[:n])
- elif cmd == '2':
- amount_results = count_of_words(content)
- print('文章共有单词{}个,其中不重复单词{}个'.format(*amount_results))
- elif cmd == '3':
- n = int(input())
- top_ten_words(frequency_result, n)
- elif cmd == '4':
- n = int(input())
- top_ten_words_no_excludes(frequency_result, n)
-
- # frequency_no_excludes = top_ten_words_no_excludes(frequency_result)
- # draw_cloud(frequency_no_excludes)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。