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 trialAndrey Klimushin
3,614 PointsWhy my second function is not workin`?
I`m getting odds but it seems it is not the best solution. Pls help!
def first_4(arg):
arg = list(range(20))
return arg[1:5]
def odds(arq):
arq = list(range(30))
return arq[1::2]
2 Answers
Chris Shaw
26,676 PointsHi Andrey,
Your odds
function is correct with the exception that the first line of code within it is not required, simply removing that will allow task 2 of the challenge to pass.
def odds(arq):
return arq[1::2]
Happy coding!
Andrey Klimushin
3,614 PointsOhhhh....thanks)))))