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

I really dont understand this task

This is confusing me so hard.

slices.py
def first_4(list):
    list = ['1', '2','3','4']

    list[1:4]

1 Answer

Steven Parker
Steven Parker
231,007 Points

It looks like there's three issues:

  • the "list" is supplied as an argument, so you don't want to replace it with a new one
  • the index value for the first item is 0 (zero), not 1
  • the function needs to return the final value