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 Functional Python Functional Workhorses Map

I'm not sure If I'm just wrong or misunderstanding the question

This code reverses the list and it works in my command line. but maybe I'm not understanding what the question is asking?

maps.py
backwards = [
    'tac',
    'esuoheerT',
    'htenneK',
    [5, 4, 3, 2, 1],
]

def reverse(iterable):
    return iterable.reverse()

1 Answer

iterable.reverse() reverses a list in place but the return value is None. So your function returns None.

I get the same results from the following code:

backwards = [
    'tac',
    'esuoheerT',
    'htenneK',
    [5, 4, 3, 2, 1],
]

def reverse(iterable):
    return iterable[::-1]

print(reverse(backwards))  
backwards = [
    'tac',
    'esuoheerT',
    'htenneK',
    [5, 4, 3, 2, 1],
]

def reverse(iterable):
    iterable.reverse()
    return iterable

print(reverse(backwards)) 

But only the slice method is accepted by the challenge