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 trialMIK 7
Courses Plus Student 881 Pointshow to get firstANDlast items inside a list ?
i did it like this :
def first_and_last_4(x): num1 = x[-4:] num2 = x[::-1] num3 = num2[-4:] num4 = [num3, num1] return num4 avg = first_and_last_4(???) print(avg)
def first_4(x):
return x[0:4]
def first_and_last_4(x):
num1 = x[-4:]
num2 = x[::-1]
num3 = num2[-4:]
num4 = [num3, num1]
return num4
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are on the right path. The first four can be found using x[:4]
and the last four can be found using x[-4:]
. You can then join these with a simple + sign.
Post back if you need more help. Good Luck!