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

Thought this should work?

With reverse evens, the first colon is to accept the whole iterable; the second one is for even numbers only and the last one is to reverse it

slices.py
def first_4(thing):
    return thing[0:4]
def first_and_last_4(thing):
    return thing[0:4] + thing[-4:]
def odds(thing):
    return thing[1::2]
def reverse_evens(thing):
    return thing[::2:-1]

4 Answers

Oscar Rojas
Oscar Rojas
4,195 Points
def reverse_evens(thing):
    return thing[::-1][::2]

Seems not to work

Cole Wilson
Cole Wilson
7,413 Points

Slices are start - step - stop.

You should be able to do thing[:-2:-1]

Oscar Rojas
Oscar Rojas
4,195 Points

What exactly are you expecting from that function?

Thanks @Cole Wilson for the reminder. I figured it out, had to separate the 2 steps and then it worked fine.

def reverse_evens(thing): return thing[::2][::-1]

Thank you everyone for the help!