sort method in list in python code example
Example 1: how do i sort list in python
my_list = [9, 3, 1, 5, 88, 22, 99]
my_list = sorted(my_list, reverse=True)
print(my_list)
my_list = sorted(my_list, reverse=False)
print(my_list)
my_list.sort(reverse=True)
print(my_list)
print(my_list[::-1])
Example 2: sort python
>>> x = [1 ,11, 2, 3]
>>> y = sorted(x)
>>> x
[1, 11, 2, 3]
>>> y
[1, 2, 3, 11]
Example 3: how to sort a list in python
l=[1,3,2,5]
l= sorted(l)
print(l)
l=[1,3,2,5]
l= sorted(l,reverse=True)
print(l)
Example 4: how to sort a list in python
old_list = [3,2,1]
old_list.sort()
Example 5: sorting in python
python list sort()