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

Bapi Roy
Bapi Roy
14,237 Points

Why am I getting Bummer! got the wrong string(s)?

I am getting all four string in the tuple. Still getting bummer. Or I have misunderstood the challenge.

stringcases.py
def stringcases(string):
    tuple_1 = string.upper()
    tuple_2 = string.lower()
    tuple_3 = string[:1].upper() + string[1::].lower()
    tuple_4 = string[::-1]

    tup = tuple_1, tuple_2, tuple_3, tuple_4

    return tup

1 Answer

Steven Parker
Steven Parker
229,644 Points

Your third term isn't quite right.

The challenge says, "Titlecased (first letter of each word is capitalized)", but it looks like your code will capitalize the first word instead of each word.

Hint: What if there were a function like upper and lower that already did that? :wink: