Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Arun Patel
1,180 PointsWhat's wrong with the odds function?
I tried the odds function separately in python Shell with slicing [::2], for e.g for "arunpatel", I got ['a', 'u', 'p', 't', 'l']. Is this not correct?
def first_4(str1):
str2 = list(str1)
if len(str2) >= 4:
list1 = str2[:4]
else:
return
return list1
def first_and_last_4(str1):
str2 = list(str1)
if len(str2) >= 8:
list1 = str2[:4] + str2[-4:]
else:
return
return list1
def odds(str1):
str2 = list(str1)
list1 = str2[::2]
return list1
2 Answers

Steven Parker
216,032 PointsYou said "for "arunpatel", I got ['a', 'u', 'p', 't', 'l']. Is this not correct?", no that would be the items with even index numbers (0, 2, 4, ...etc). Remember that index numbers start at 0.

Arun Patel
1,180 PointsThanks Steve, got it. It will be [1::2].