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

I have made this code and its not running, where am i getting it wrong?

i keep getting Bummer! Try again! but my code seems ok. Can someone help.

slices.py
def first_4(items):
        return items[:4]
def first_and_last_4(items):
    return items[:4] + items[-4:]
def odds(items):
    for items in odds:
        int items[]:
            if items[] %2 !== 0:
                return items[::]

1 Answer

Hey Tafadzwa Masocha , Hope the below code helps:

 def first_4(num):
      return num[0:4]

def odds(oklahoma):
      return oklahoma[1::2]

def first_and_last_4(itb):
    result = itb[0:4]
    result.extend(itb[-4:])
    return result

def reverse_evens(iterable):
    return iterable[::2][::-1]