max_consec_sum(numbers, n)
returns the maximum sum of n consecutive elements of numbers, a list that contains any mix of ints and floats.
Examples:
>>> max_consec_sum([10,2,-3,4,3],1) 10 >>> max_consec_sum([10,2,-3,4,3],2) 12 >>> max_consec_sum([10,2,-3,4,3],3) 9 >>> max_consec_sum([10,2,-3,4,3],4) 13 >>> max_consec_sum([10,2,-3,4,3],5) 16Assume that 1 <= n <= len(numbers) and that numbers has at least one element.