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 (Retired) Slices Slice Functions

Zack Parr
Zack Parr
4,091 Points

first_and_last_4

How the hell do figure this one out, I don't think Kenneth gave us a clue about adding two slices together!!

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

def odds(lst):
  return lst[1::2]

def first_and_last_4(lst):
  return lst[:4]
  return lst[-4:]

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The key is to build the result from the two parts:

def first_and_last_4(lst):
  result = lst[:4] 
  result.extend(lst[-4:])
  return result

Chris I love your answers cause I can use them on other stuff, It never came to my mind the usage of extend lol. Thx