Type an oddEvenSum function (list1 , list2) that receives two lists of numbers, and returns a list that contains the sum of the even positions in the two lists in the same way with odd positions. You cannot use len (), you can only go through the list once. The function should behave as follows:
oddEvenSum ([1, 2, 3], [4, 5, 6, 7]) # returns [4, 5, 7, 6] oddEvenSum ([1, 2, 3], [4, 5, 6]) # raises an error oddEvenSum ([1, 2], [3, 4, 5, 6, 7, 8]) # returns [3, 4, 4, 5]