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 trialanthony pizarro
1,983 Pointswhats wrong with my code
i have written this code in workspace and it has worked , but for some reason, it won't pass
def stringcases(string):
w = strings.upper()
x = strings.lower()
y = strings.title()
tuple1 = (w,x,y,string[::-1])
return tuple1
stringcases("apple")
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsSo close! You have strings
instead of the parameter string
in lines 2, 3, and 4. Fix the typo and your good!