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 trialAlwen Nyikadzanzwa
1,541 PointsWhat is wrong with this code
please examine my code and tell me where am getting it wrong
def stringcases(words):
a = words.upper()
b = words.lower()
c = words.title()
d = words[::-1]
return tuple(a,b,c,d)
2 Answers
Steven Parker
231,236 PointsYou're really close! You just don't need to call "tuple":
return a,b,c,d
A group of things separated by commas makes a tuple.
For future reference, the "tuple" function is used to convert another kind of iterable (like a range or list) into a tuple.
KRIS NIKOLAISEN
54,971 PointsI ran this in a workspace and received the following error:
TypeError: tuple() takes at most 1 argument (4 given)
Changing the return statement to:
return tuple([a,b,c,d])
passed the challenge