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

My code does what I want but am still receiving "Got the wrong output for string(s):"

The output should be all upper, all lower, titlecased and reversed

stringcases.py
def stringcases(value):
    title_cased = value[0].upper() + value[1:].lower()
    the_tuple = value.upper(), value.lower(), title_cased, value[:0:-1] + value[0]
    return the_tuple

1 Answer

Stuart Wright
Stuart Wright
41,118 Points

Your title-cased output needs to uppercase the first letter of each word in the string, not just the first character in the whole string. There's actually a string method called title() which does exactly this, which will be useful here.