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

OK, try this one on for size: create a new function named odds that re

Please help me out.

slices.py
def first_4(z):
    return z[:4]

def first_and_last_4(x):
    return x[:4] + x[-4:]

def odds(a):    
    for i, y in enumerate(odds):
        if i%2!=0:
            return i, y
odds(odds)
Jose Lopez
Jose Lopez
4,615 Points

What are you trying to do?

Im trying to complete the folowing:

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.

Please ignore the first two functions as they relates to previous challenges (def first_4 & first_and_last_4)

nakalkucing
nakalkucing
12,964 Points

Remember what you're working with. Hint: [::]

1 Answer

Steven Parker
Steven Parker
229,744 Points

As nakalkucing hinted, the purpose of this exercise is to practice using slices, so you can expect each task to be solved using one or more slices.

In particular, you will not need a loop, or a conditional test.