python list method to sort a list code example
Example 1: how to sort a list in python
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]
Example 2: how to sort a list in python
old_list = [3,2,1]
old_list.sort()