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 trialBill Gardner
9,518 PointsBummer! Didn't get the right values from `first_and_last_4`. Code works in my console...help!
This code works in my console and meets the requirements of the exercise, but Treehouse returns the error in the title. What am I missing?
'''Python def first_and_last_4(li): first = li[:4:1] last = li[-1:-5:-1] new = first + last return new '''
def first_4(li):
new = li[0:4]
return new
def first_and_last_4(li):
first = li[:4:1]
last = li[-1:-5:-1]
new = [first + last]
return new
2 Answers
Alexander Davison
65,469 PointsI found that this solution works in my IDE:
def first_and_last_4(L):
return L[:4] + L[-4:]
Bill Gardner
9,518 PointsWell that is definitely cleaner code. Works too. Thanks!