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 trialJesse Ferguson
1,419 Pointsslices
need help... what am I doing wrong here
my_list = ['hey', 'I', 'am', 18, 'and' 12, 1, 2, 3, 4]
def first_4(my_list):
my_list[:3]
return my_list
def first_and_last_4(my_list):
my_list[:3]
my_list[6:10]
return my_list
2 Answers
Thomas Fildes
22,687 PointsHi Jesse,
Please see the below code I used to pass this part of the challenge:
def first_and_last_4(iterable):
return iterable[:4] + iterable[-4:]
The above code returns the first 4 and last 4 items as instructed.
The tricky part is understanding the [-4:] bit of code. Basically this code will start at -1 (last item in list) and count backwards up to the fourth last item in the list.
Hope this helps! Happy Coding!!!
Jesse Ferguson
1,419 PointsThanks bro!