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 trialStefan Vaziri
17,453 PointsDon't know what I'm doing wrong here...
Can someone tell me what I'm doing wrong here? Can't seem to figure it out.
backwards = [
'tac',
'esuoheerT',
'htenneK',
[5, 4, 3, 2, 1],
]
def reverse(item1):
return list(reversed(item1))
forwards = map(reverse, backwards)
1 Answer
Stefan Vaziri
17,453 PointsI figured it out by doing return item1[::-1] but still not sure why the above doesn't work...I thought reversed() does the same things as [::-1]
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsChanged to answer.
reversed()
doesn't work for strings:Stefan Vaziri
17,453 PointsStefan Vaziri
17,453 PointsAh I see. Thank you Chris.