Write a Python function to compute the average of a sequence of numbers after
discarding m lowest and n highest scores. If the sequence is empty before or after
cropping, then return None
''' you should use the template of following.'''
[3, 15, 13, 9, 11, 7, 5]
>>> CroppedAverage(L) # works like a regular average
9.0
>>> CroppedAverage(L, dropLow=2, dropHigh=1) # drop 3, 5, 15
10.0
>>> CroppedAverage(L, dropLow=3, dropHigh=4) # drop all
None