栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何在python中将文本文件拆分为单词?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何在python中将文本文件拆分为单词?

没有人建议过发电机,我很惊讶。这是我的处理方式:

def words(stringIterable):    #upcast the argument to an iterator, if it's an iterator already, it stays the same    lineStream = iter(stringIterable)    for line in lineStream: #enumerate the lines        for word in line.split(): #further break them down yield word

现在,这可以在您可能已经在内存中的简单句子列表中使用:

listOfLines = ['hi there', 'how are you']for word in words(listOfLines):    print(word)

但是它在文件上也可以正常工作,而无需读取内存中的整个文件:

with open('words.py', 'r') as myself:    for word in words(myself):        print(word)


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/661299.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号