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 trialms28
Python Web Development Techdegree Student 1,067 PointsIts working in my terminal, but not working here in the system.
def first_and_last_4(list): frist_4 = list[:4] last_4 = list[-4:]
return (first_4 + last_4)
should be working, fine but not sure why it's not working.
Working in my terminal quite fine.
def first_and_last_4(list):
frist_4 = list[:4]
last_4 = list[-4:]
return (first_4 + last_4)
3 Answers
KRIS NIKOLAISEN
54,971 PointsYou have a misspelling of first here:
frist_4 = list[:4]
KRIS NIKOLAISEN
54,971 PointsDid you keep your code from task 1 or overwrite it? You need to keep all functions that you write.
ms28
Python Web Development Techdegree Student 1,067 PointsStill getting this error:
Bummer: Couldn't find first_4
.