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

Having problems with First Slice Challenge. Cannot go past the third step.

Can't understand what I'm doing wrong.

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

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

First, you seem to have introduced an error in the Task 2 code. The last slice should be [-4:]. The last -1 reversed the order of the last four items.

For Task 3, you are providing the items at index 1,... etc. However, the challenge wants every other item. How can you add a skip to the slice to get every other one?

Post back if you need more help! Good luck!!

Hi Chris, apologies for the late reply but I was able to figure it out. Thanks for your help!