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 trialsarvienn thevendran
734 Pointsfunction odds
it's throwing back an error.. how do i get this done
def first_4(it):
it = it[:4]
return it
def first_and_last_4(it):
return it[:4] + it[-4:]
def odds(it):
for it[i] in it:
if i %2 !=0:
return it
1 Answer
Steven Parker
231,236 PointsYou may have misinterpreted the instructions. They ask for a function "that returns every item with an odd index", not with an odd value.
Also if you return from within a loop, you'll only return one item and the loop will never finish. But you can do this task without a loop using slices.