sort an array in python code example

Example 1: python sort list in reverse

#1 Changes list
list.sort(reverse=True)
#2 Returns sorted list
sorted(list, reverse=True)

Example 2: sort array python

array = [1, 2, 3, 19, 11, 90, 0]
array.sort()
print(array)

Example 3: numpy sort

>>> a = np.array([[1,4],[3,1]])
>>> np.sort(a)                # sort along the last axis
array([[1, 4],
       [1, 3]])
>>> np.sort(a, axis=None)     # sort the flattened array
array([1, 1, 3, 4])
>>> np.sort(a, axis=0)        # sort along the first axis
array([[1, 1],
       [3, 4]])

Example 4: sort an array python

#List
myList = [1,5,3,4]
myList.sort()
print(myList)
	#[1,3,4,5]

Example 5: sorting python array

sorted(list, key=..., reverse=...)

Example 6: 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]