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 trialMarie Spreitzer
1,268 PointsPls help me with my code:
Heyo,
I don't know why it's not working - I tried it out in my local terminal and it works just fine. Is it just not taking the answer because I coded it in a different way as they wanted to?
def stringcases(string):
result = []
result.append(string.upper())
result.append(string.lower())
result.append(string.capitalize())
result.append(string[::-1])
final = tuple(result)
return final
2 Answers
Kirome Thompson
5,350 PointsWhat are you trying to do?
Kirome Thompson
5,350 PointsUnfornately I'm having the same problem as you with it not working with Treehouse's compiler, useless
Marie Spreitzer
1,268 PointsMarie Spreitzer
1,268 PointsThe task: Create a function named stringcases that takes a single string but returns a tuple of different string formats. The formats should be: All uppercase All lowercase Titlecased (first letter of each word is capitalized) Reversed There are str methods for all but the last one.