In a homework set I\'m working on, I\'ve come across the following question, which I am having trouble answering in a Python-3 function:
\"Write a fun
You could try this list comprehension:
sum([-e if c%2 else e for c,e in enumerate(yourlistylist)])