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 trial

Python Python Collections (2016, retired 2019) Slices Slice Functions

Samantha Shaffer
Samantha Shaffer
1,710 Points

I think I have the right answer...but the program says I'm wrong. Help!

I need to return a list in reverse only showing every other value. I create "reverse_evens" below to do so and when I test it, it seems to work. But the program says I'm wrong.

slices.py
def first_4(x):
    return x[:4]

def first_and_last_4(x):
    return x[:4] + x[-4:]

def odds(x):
    return x[1::2]

def reverse_evens(x):
    return x[::-2]
Keith Hankins
Keith Hankins
4,647 Points

You have two issues to resolve in you reverse_evens function. The first is that your starting point needs to occur at the last even index in the iterable given in order to get all of the EVEN indexes. The second is that your code must handle both an odd and even number of items in the iterable. You'll have to make use of an if statement.

1 Answer

Hey Samantha, the reason why your code may seem to work correctly when you test it but then it fails the code challenge is that the code challenges are running tests that give your code a bunch of different inputs to see if it works under all circumstances. The code you have written might work for some circumstances, but still fail a few of the tests. Hope that makes sense! Now moving on to your code.

This challenge is not really asking you to return a slice that contains every other item in the iterable. What it is actually asking you to do is return a slice containing all the items in the argument that occupy an even index value, but in reverse. So there are two steps here.

  1. Let's not worry about the reverse part of this challenge right now. Problem-solving is about solving one piece of the puzzle at a time. How do you get all the even items in an iterable? Try it yourself first, then look at my answer.

Answer: iterable[::2]. This returns a slice that starts at the beginning, goes to the end, and returns every second item.

  1. Now, how do you return a slice that contains the reverse of an iterable? Slices are iterables themselves, so you can take a slice of a slice. Try it yourself.

Answer: iterable[::-1]

Now put them together: iterable[::2][::-1].

Hope this helps you solidify your knowledge of slices!

did you mean something like this sir? I am having trouble with this as well.

def reverse_evens(item): return item [2::-2]

No. The answer I provided passes the challenge.