trier liste par ordre alphabétique python code example
Example 1: tri python
>>> sorted([5, 2, 3, 1, 4])
[1, 2, 3, 4, 5]
Example 2: python triée plusieurs fois avec virgule
lst = []
while True:
s = input().split(',')
if not s[0]:
break
lst.append(tuple(s))
lst.sort(key=lambda x: (x[0], x[1], x[2]))
print(lst)