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 trialGreg Waitt
6,599 PointsUnclear directions
Reverse what? I reversed the string so it reads backwards. What am I supposed to reverse? Letters of each word? Reverse the words and the letters so it is a mirror image? Please clarify.
def stringcases(my_string): upper_string = my_string.upper() lower_string = my_string.lower() title_string = my_string.title() words = my_string.split() words.reverse() reverse_string = ' '.join(words) return(upper_string, lower_string, title_string, reverse_string)
def stringcases(my_string):
upper_string = my_string.upper()
lower_string = my_string.lower()
title_string = my_string.title()
words = my_string.split()
words.reverse()
reverse_string = ' '.join(words)
return(upper_string, lower_string, title_string, reverse_string)
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Yes, it means to reverse the string. If I put in "Treehouse" I would expect to get back "esuoheerT". I highly suggest you run this in an workspace and check your output. Right now, your code does not actually reverse that string.
Hope this helps!
Greg Waitt
6,599 PointsGreg Waitt
6,599 PointsThanks for your help. I was locked into the string having to be sentence, which could be reversed multiple different ways.