第二种方法是比较函数。此函数接受两个参数,如果第一个参数小于或等于第二个参数,则返回True。在
这是这样一个函数,它假设它的两个参数是列表。它比较列表中的元素3,忽略其他元素。在您的例子中,元素3包含最终得分。所以这就是你想要的。在def compare_marks(mark1, mark2):
return mark1[3] <= mark2[3]
现在,qsort函数将如下所示,将显式的<;=比较替换为对比较函数的调用:
^{pr2}$
最后,在将数据收集到一个大列表中进行排序的代码中,将每个拆分行放入列表中,而不是其中的一个元素:def sortedMark():
with open(home + "\\Desktop\\PADS Assignment\\test(sorted).txt", "a") as f:
with open(home + "\\Desktop\\PADS Assignment\\test(unsorted).txt", "r") as f1:
lines = [line.split() for line in f1] # convert each line in file into 2d array
print(lines)
for a in lines:
moduleCode = a[0] # DICT is the module code
stdNum = a[1] # 201707011 and so on is the student number
stdName = a[2] # Jonny_Guy and so on is the student name
finalMark = a[3] # 77.5 and 70.0 and so on is the final mark
markData.append(a) # append split line to array
stdData.append(moduleCode)
stdData.append(stdNum)
stdData.append(stdName)
finalSortMark = qsort(markData)
print(finalSortMark)
在这一切的最后,列表finalSortMark中的每个元素都包含了文件中最初存在的所有字段。您可以将其打印出来,也可以将其写入文件。在
我认为您不再需要列表stdData,但我将它放在那里,这样您可以更容易地发现我所做的更改。在