Left Sidebar
Showing posts with the label Sorting in PythonShow all
Python inbuilt sorting of lists
Champak Roy
Saturday, March 19, 2022
Inbuilt Sorting of Lists in Python a = [ 16 , 0 , 1 , 9 , 70 ] # Create a list a print (a) a.sort() # Sort the array print (a) # The sorted array a.sort( reverse = True ) # Sort the array in reve…