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 trialHarihar Kandula
6,486 Pointshow to use slice to get first four and last four values in a list ?
Make a new function named first_and_last_4. It'll accept a single iterable but, this time, it'll return the first four and last four items as a single value.
def first_4(list):
return(list[0:4], list(0:-4])
1 Answer
Steven Parker
231,236 PointsYou're getting close there, but there's a few issues:
- the name of the new function is "first_and_last_4"
- the function from task 1 ("first_4") should still be as it was when it passed task 1
- you'll want to combine the two slices together but not make a tuple of them
- the second slice starts with a parenthesis instead an open brace
- check the arguments on the second slice — "last 4" should probably start somewhere other than 0
Steven Parker
231,236 PointsThat's better, but you left off the parameter name on that 2nd slice. Also, you probably don't want the "last 4" slice to end at index 1.
And you're still making a tuple (,)
instead of combining the slices +
Harihar Kandula
6,486 PointsHarihar Kandula
6,486 Pointslist (0,-4) returns values from index -1 to fourth last item. this is what I wrote - def first_and_last_4(list): return(list[0:4],[-4::1])
for some reason, I get an error.