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 trialMathew Yangang
4,433 PointsI am trying to reverse items using an even number, but i keep getting error messages that the right values were not pass
I am trying to reverse items using an even number, but i keep getting error messages that the right values were not passed in reverse_evens
def first_4(item):
return item[:4]
def first_and_last_4(things):
firstFour= things[:4]
lastFour = things[-4:]
result = firstFour + lastFour
return result
def odds(item):
return item[1::2]
def reverse_evens(item):
return item[::-2]
1 Answer
Kirsten Smith
3,484 PointsThis code only passes when an odd length is passed. Think about how you can alter the code for an even length is passed in.