Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialkirank
6,275 PointsAm i missing something with this
My exercise is returning the expected output but the check seems to be failing. Please help with what may be missing
def first_4(listA):
return listA[:4]
def first_and_last_4(listB):
return listB[:4] + listB[-4:]
def odds(listC):
return listC[1::2]
def reverse_evens(listD):
listD= listD[::-1]
return(listD[::2])
2 Answers
Steven Parker
231,236 PointsYou're close, and your function should work already half of the time, based on the size of the list.
To make sure it works in all cases, try getting the even indexed items first, and then reversing them.
kirank
6,275 PointsThanks. I did not run through all the possible cases for the size of the list.
Ed H-P
2,728 PointsEd H-P
2,728 PointsI think I know the issue you're having - is it with the last function by any chance? I made a basic error with that one the first go I had at it - my function didn't check whether the last index was odd or even, it just took that last index and iterated (backwards) from there.
My first code looked something like:
which does exactly the same thing as your
reverse_evens
function. If the list I passed in to the function contained an odd number of items, it worked fine! But if the list had an even number, I was instead returning the odd-indexed items.How do you think you could add the % modulus operand to your function, to check whether the last index is even or odd, and start at the correct index accordingly?