You are viewing a single comment's thread. Return to all comments →
sort_factor = [] for i in range(len(arr)): sort_factor.append(arr[i][k]) sort_factor = list(set(sorted(sort_factor))) for j in sort_factor: for y in range(len(arr)): if j == arr[y][k]: print(*arr[y])
Seems like cookies are disabled on this browser, please enable them to open this website
Athlete Sort
You are viewing a single comment's thread. Return to all comments →