私は以下を作成しました
class uniquePlayers():
def __init__(self):
self._item = [ [] for i in range(5) ]
self.count = 0
def addPlayer(self, firstInstance, firstName, lastName, Country, long):
self._item[0].append(firstInstance)
self._item[1].append(firstName.lower())
self._item[2].append(lastName.lower())
self._item[3].append(Country)
self._item[4].append(long.lower())
self.count += 1
def sortByKey(self, index = 4 ):
self._item[index].sort()
クラス全体を並べ替えようとしていますが、他のリストのすべてが続くようにしています。明らかに私がやったことは、「長い」リストをソートするだけです