对文本文件中的单词(带参数)进行排序,并使用Python将它们写入新文件

时间:2016-05-21 03:14:53

标签: python string list file sorting

我有一个包含数千个单词的file.txt,我需要根据某些参数创建一个新文件,然后以某种方式对它们进行排序。 假设用户在测试时导入了正确的库,我的代码有什么问题? (有3个独立的功能)

首先,我必须创建一个包含某些字母的文件,然后按字典顺序对它们进行排序,然后将它们放入一个新文件list.txt。

def getSortedContain(s,ifile,ofile):
  toWrite = ""
  toWrites = ""
  for line in ifile:
      word = line[:-1]
      if s in word:
        toWrite += word + "\n"
  newList = []
  newList.append(toWrite)
  newList.sort()
  for h in newList:
      toWrites += h
  ofile.write(toWrites[:-1])

第二个是类似的,但如果输入的字符串不在单词中,则必须按字典顺序排序。

def getReverseSortedNotContain(s,ifile,ofile):
  toWrite = ""
  toWrites = ""
  for line in ifile:
      word = line[:-1]
      if s not in word:
         toWrite += word + "\n"
  newList = []
  newList.append(toWrite)
  newList.sort()
  newList.reverse()
  for h in newList:
      toWrites += h
  ofile.write(toWrites[:-1])

对于第三个,我必须对包含一定数量整数的单词进行排序,并按每个单词中的最后一个字符按字典顺序排序。

def getRhymeSortedCount(n, ifile, ofile):
  toWrite = ""
  for line in ifile:
      word = line[:-1] #gets rid of \n
      if len(word) == n:
          toWrite += word + "\n"
  reversetoWrite = toWrite[::-1]
  newList = []
  newList.append(toWrite)
  newList.sort()
  newList.reverse()
  for h in newList:
      toWrites += h
  reversetoWrite = toWrites[::-1]
  ofile.write(reversetoWrites[:-1])

有人可以指出我正确的方向吗?现在他们没有按照他们的预期进行排序。

1 个答案:

答案 0 :(得分:0)

这里有很多东西不清楚,所以我会尽力清理它。

您将字符串连接成一个大字符串,然后将一个大字符串附加到列表中。然后,您尝试对单元素列表进行排序。这显然无济于事。而是将所有字符串放入列表中,然后对该列表进行排序

IE:对于您的第一个示例,请执行以下操作:

def getSortedContain(s,ifile,ofile):
  words = [word for word in ifile if s in words]
  words.sort()
  ofile.write("\n".join(words))