Answers for "python sorted return index"

1

index of sorted list python

vals = numpy.array([2,3,1,4,5])
sort_index = numpy.argsort(vals)

>>> sort_index
array([2, 0, 1, 3, 4])
Posted by: Guest on July-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language