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 trial

Python Python Collections (2016, retired 2019) Slices Slice Functions

Arun Patel
Arun Patel
1,180 Points

What'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?

slices.py
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
Steven Parker
229,644 Points

You 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
Arun Patel
1,180 Points

Thanks Steve, got it. It will be [1::2].