I have a long list of float numbers ranging from 1 to 5, called \"average\", and I want to return the list of indices for elements that are smaller than a or larger than b>
>>> average = [1,3,2,1,1,0,24,23,7,2,727,2,7,68,7,83,2]
>>> matches = [i for i in range(0,len(average)) if average[i]<2 or average[i]>4]
>>> matches
[0, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15]