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

Stringcases (Tuples)

Maybe I just didn't understand the task, but why this isn't working? In my workspaces it works..

stringcases.py
from titlecase import titlecase

def stringcases(string):
    print(tuple(str(string).lower()))
    print(tuple(str(string).upper()))
    print(tuple(titlecase(string)))
    print(tuple(reversed(string)))

1 Answer

Wesley Trayer
Wesley Trayer
13,812 Points

Hey, Jim, titlecase isn't a module that needs to be imported, it is a method of strings. So just like .upper and .lower, .titlecase can be placed at the end of a string.

For example:

string.titlecase

Also the answers aren't supposed to be printed as individual tuples, they should be returned as a single tuple.

a = string.lower()
b = string.upper()
return a, b # This returns the tuple (a, b)

Hope this helps.

Oh, thanks Wesley! I finally got it!