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 trialJoakim Vercaemst
9,036 PointsThought 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
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
4,195 Pointsdef reverse_evens(thing):
return thing[::-1][::2]
Cole Wilson
7,413 PointsSlices are start - step - stop.
You should be able to do thing[:-2:-1]
Oscar Rojas
4,195 PointsWhat exactly are you expecting from that function?
Joakim Vercaemst
9,036 PointsThanks @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!
Joakim Vercaemst
9,036 PointsJoakim Vercaemst
9,036 PointsSeems not to work