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 Python Collections (2016, retired 2019) Tuples Stringcases

Francesco Cabiddu
Francesco Cabiddu
2,297 Points

stringcases 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

stringcases.py
def stringcases(x):
    return((x.lower(), x.upper(), x.title(), x[::-1]))

2 Answers

Steven Parker
Steven Parker
229,744 Points

Be 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
Francesco Cabiddu
2,297 Points

Hi Steven! Thank you very much for your answer! I'll follow your suggestion!

Francesco