Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

arielp
3,065 Pointsfirst_and_last_4
can't figure it out why it isn't happy with this code?
def first_and_last_4(num):
f4 = num[:4]
l4 = num[-4:]
return f4 + l4
thanks in advance!
2 Answers

Dylan Glover
2,537 PointsHey Ariel, I'm not an expert at Python, but it seems to be pretty picky about the spacing of your functions. Changing the indentations to line up seemed to make the argument pass the challenge without changing anything else.
Before:
def first_and_last_4(num):
f4 = num[:4]
l4 = num[-4:]
return f4 + l4
After:
def first_and_last_4(num):
f4 = num[:4]
l4 = num[-4:]
return f4 + l4

arielp
3,065 Pointsstill no success I can't see why it's frustrating... I feel happy with what I did so I'm gonna leave it... many thanks anyway.
arielp
3,065 Pointsarielp
3,065 PointsI'll try that many thanks