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

Moses Ong
Moses Ong
165 Points

Need help with this!

I need more practice and help with this

stringcases.py
def stringcases(string):

    for index, elements in enumerate(string):
        return string 

1 Answer

Alex Koumparos
seal-mask
.a{fill-rule:evenodd;}techdegree
Alex Koumparos
Python Development Techdegree Student 36,887 Points

Hi Moses,

Which part of the question are you struggling with? How to find the the methods to: lowercase a string, uppercase a string, titlecase a string, reverse a string? Each of these is trivial to find with a google search.

Or are you struggling with tuples? Practically speaking, tuples are like lists but enclosed in parentheses instead of square brackets. So, for example, if I had the following values: "hello", 12345, 3.14 and I wanted to return them as a tuple I would write:

return ("hello", 12345, 3.14)

Hope that helps

Alex