summaryrefslogtreecommitdiff
path: root/progs/a238.py
blob: 33773f6aa185e94e63a52dc25ef28c76e468e7d7 (plain)
1
2
3
4
5
6
7
def sort_tuple(tup): 
	n = len(tup) 
	for i in range(n): 
		for j in range(n-i-1): 
			if tup[j][0] > tup[j + 1][0]: 
				tup[j], tup[j + 1] = tup[j + 1], tup[j] 
	return tup