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 trialNicholas Gaerlan
9,501 PointsThis answer seems correct
I've tested this code and it returns the expected result. I've tried it with both a list and a string. I returns the first 4 items concatenated with the last 4 items as one single variable.
def first_and_last_4(x):
az = x[0:4] + x[-4:]
return az
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! Your code passes for me. However, it's important to make sure that you did not remove the function you made in the previous step. Removing the code from the step before will cause this to fail.
Here's a quote from the challenge:
Important: In each task of this code challenge, the code you write should be added to the code from the previous task.
Let me know if you get it working!
Nicholas Gaerlan
9,501 PointsThanks! Best Answer :-)