Files
DEV/DEV1.1/TP19/sort.py

5 lines
63 B
Python
Raw Normal View History

2025-09-04 15:36:55 +02:00
t = [5,8,8,7,5,8,3,5,7,8,4,4,4,5,3,1,2,3,7]
t.sort()
print(t)