vote up 0 vote down star

How can you fix the code?

I am trying to have i % 3 == 1 and i != 16 unsuccessfully by

data = "8|9|8|9|8|9|8|9|9|8|9|8|9|8|9|8"
arra = map(int,data.split("|"))

arra = sum(arra[1::3 and != 16]) for i in range(0, len(arra), 16)]        
                       |
                       |---// Problem here
flag

2 Answers

vote up 5 vote down check

Try this:

arra = sum(a for i,a in enumerate(arra) if i %3==1 and i != 16)

For this kind of complex work, slice notation wont really do. But why do you assign back to arra? You wipe out your original list of values.

link|flag
+1 for using enumerate(). This is the correct answer. – Daniel Pryden Nov 6 at 20:43
vote up 0 vote down

Slices don't work like that.

Paul McGuire has the correct code:

arra = sum(x for i, x in enumerate(arra) if i % 3 == 1 and i != 16)

It's also not clear from your code what the point of the for i in range(0, len(arra), 16)] is supposed to be. What are you trying to accomplish?

link|flag
The OP does not want to skip values == 16, but the index == 16. – Paul McGuire Nov 6 at 20:38
@Paul McGuire: Ah yes. My mistake. I've corrected my answer. – Daniel Pryden Nov 6 at 20:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.