vote up 0 vote down star

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)]
flag

Stylistically, is there a reason you are converting your data from a string, instead of just starting with arra = 8,9,8,9,8,9,8,9,9,8,9,8,9,8,9,8? Also arra is a strange choice of variable name. array is neither a reserved word nor a builtin in python (the structure you're thinking of is either called a list or tuple). – jcd Nov 7 at 1:43

2 Answers

vote up 6 vote down check
sums += sum(arra[1::5])

And it's spelled array. ;-)

link|flag
I had no idea you could do this. Awesome! – Matt Baker Nov 6 at 20:05
Further documentation can be found under the term "slicing." – jcd Nov 7 at 1:44
vote up 0 vote down

It's

sums = sum(arra[1::5])

If you use +=, Python spects that the name sums is alreadey accesible:

Traceback (most recent call last): File "", line 1, in sums += sum(arra[1::5]) NameError: name 'sums' is not defined

link|flag

Your Answer

Get an OpenID
or

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