blob: 1a394213dc35b214ba0923729f5ee2850889d9c2 (
plain)
1
2
3
4
5
6
7
8
9
|
def sort_tuple(tup):
lst = len(tup)
for i in range(0, lst):
for j in range(0, lst-i-1):
if (tup[j][-1] > tup[j + 1][-1]):
temp = tup[j]
tup[j]= tup[j + 1]
tup[j + 1]= temp
return tup
|