How to get indices of a sorted array in Python I have a numerical list: myList = [1, 2, 3, 100, 5] Now if I sort this list to obtain [1, 2, 3, 5, 100]. What I want is... May 20, 2022 0 Comments