How can you fix the following code?
I want to get the slice of elements that are i mod 5 == 1.
data = "8|9|8|9|8|9|8|9|9|8|9|8|9|8|9|8"
arra = map(int,data.split("|"))
sums += [sum(arra[i % 5==1:(i + 4) % 5==1]) // Problem here
for i in range(0, len(arra), 4)]

arra = 8,9,8,9,8,9,8,9,9,8,9,8,9,8,9,8? Alsoarrais a strange choice of variable name.arrayis neither a reserved word nor a builtin in python (the structure you're thinking of is either called alistortuple). – jcd Nov 7 at 1:43