lx = [92770.0, 90204.9, 89437.3, 88868.4, 88298.8, 87505.0, 86792.7, 85938.7, 84652.2, 82803.4, 80174.3, 76559.3, 71584.5]
Lx = []
I want Lx to be a list containing the average of every two adjacent numbers in lx. eg Lx = [(92770.0 + 90204.9)/2, (90204.+89437.3)/2, etc..... Please help