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 trialMONIQUE PORTILLO
172 Pointshelp here!
challenge: Amazing! I know that one can be a little tricky!
OK, try this one on for size: create a new function named odds that returns every item with an odd index in a provided iterable. For example, it would return the items at index 1, 3, and so on.
my code: [alt text]https://w.trhou.se/9syn8ehjij
my_list = list(range(1,21))
def first_4(the_list):
return the_list[:4:]
print(first_4(my_list))
def first_and_last_4(my_list):
first_4 = my_list[:4:]
last_4 = my_list[-4::]
return first_4 + last_4
def odds(only_odds):
return only_odds[0::2]
print(odds(my_list))
1 Answer
nakalkucing
12,964 PointsZero isn't an odd number. You want "the items at index 1, 3, and so on." That make sense? :)
MONIQUE PORTILLO
172 PointsMONIQUE PORTILLO
172 Pointsthank you, i just fixed it !
nakalkucing
12,964 Pointsnakalkucing
12,964 PointsYea!!