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 trialFrancesco Cabiddu
2,297 Pointsstringcases challenge. (right output but challenge not passed)
Hi! Do you know why the following code doesn't pass the challenge?
def stringcases(x): return((x.lower(), x.upper(), x.title(), x[::-1]))
Thank you very much for all of your answers! Francesco
def stringcases(x):
return((x.lower(), x.upper(), x.title(), x[::-1]))
2 Answers
Steven Parker
231,236 PointsBe careful about testing a challenge in an external REPL.
If you have misunderstood the challenge, it's also very likely that you will misinterpret the results.
In this case, you are returning all the right things, but not in the order that the challenge asked for. The uppercased version should be first.
Francesco Cabiddu
2,297 PointsHi Steven! Thank you very much for your answer! I'll follow your suggestion!
Francesco