小编给大家分享一下如何使用Python实现对文件进行单词划分并去重排序,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
具体如下:
文件名:test1.txt
文件内容:
But soft what light through yonder window breaks
It is the east and Juliet is the sun
Arise fair sun and kill the envious moon
Who is already sick and pale with grief
样例输出:
Enter file name: "test1.txt"
['Arise', 'But', 'It', 'Juliet', 'Who', 'already', 'and', 'breaks', 'east', 'envious', 'fair', 'grief', 'is', 'kill', 'light', 'moon', 'pale', 'sick', 'soft', 'sun', 'the', 'through', 'what', 'window', 'with', 'yonder']
PR4E 用 append的写法:(二重循环)
import sys fname = input("Enter file name: ") fh = open(fname) lst = list() for line in fh: line = line.rstrip() words = line.split() for word in words: if word not in lst: lst.append(word) lst.sort() print(lst)
自己一重循环写法:
import string fname = input("Enter file name: ") fh = open(fname) l = list() for line in fh: line = line.rstrip() l = l + list(line.split()) s = list(set(l)) s.sort() print(s)
以上是“如何使用Python实现对文件进行单词划分并去重排序”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!
网站标题:如何使用Python实现对文件进行单词划分并去重排序-创新互联
链接URL:https://www.cdcxhl.com/article46/ipoeg.html
成都网站建设公司_创新互联,为您提供网页设计公司、企业建站、品牌网站建设、软件开发、标签优化、App设计
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联