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

Really don't understand the answer. I'm pretty I've found the answer but it says I'm wrong. Help?

Apparently it's wrong but I don't understand how. I've been faced with quite a frequent problem where the questions are too vague in what they ask so I usually have to try a few times before I get an answer it likes.

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

def first_and_last_4(list):
    one = list[0:4]
    two = list[-5:-1:1]
    return one + two

1 Answer

This program may work on some specific lists, but it wouldn't work on other lists