Can some one find the error in this?
def checkio(array): result=0 for i in range(0,len(array),2): result+=array[i] result*=array[-1] return result