作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的目标是打开一个文件并将其拆分为唯一的单词并显示该列表(连同数字计数)。我想我必须将文件拆分成行,然后将这些行拆分成单词并将其全部添加到列表中。
问题是,如果我的程序将在无限循环中运行并且不显示任何结果,或者它只会读取一行然后停止。正在读取的文件是 The Gettysburg Address。
def uniquify( splitz, uniqueWords, lineNum ):
for word in splitz:
word = word.lower()
if word not in uniqueWords:
uniqueWords.append( word )
def conjunctionFunction():
uniqueWords = []
with open(r'C:\Users\Alex\Desktop\Address.txt') as f :
getty = [line.rstrip('\n') for line in f]
lineNum = 0
lines = getty[lineNum]
getty.append("\n")
while lineNum < 20 :
splitz = lines.split()
lineNum += 1
uniquify( splitz, uniqueWords, lineNum )
print( uniqueWords )
conjunctionFunction()
最佳答案
使用您当前的代码,该行:
lines = getty[lineNum]
应该在 while 循环中移动。
关于Python - 无法将 txt 文件中的行拆分为单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20080306/
我是一名优秀的程序员,十分优秀!