l=[1,3,2,5] l= sorted(l) print(l) #output=[1, 2, 3, 5] #or reverse the order: l=[1,3,2,5] l= sorted(l,reverse=True) print(l) #output=[5, 3, 2, 1]