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 trialYul McGrath
2,033 PointsMy code works, what is wrong?
My code works in my practice workspace, what is wrong with the code here? Do I need a exception catch? The challenge is to accept a string and if the string is too long print an error saying so and vice versa if its too short. If the value is 5 return True.
def just_right(String):
if len(String) > 5:
print("Your string is too long")
elif len(String) < 5:
print("Your string is too short")
else:
return True
1 Answer
Carlos Federico Puebla Larregle
21,074 PointsYour code is right, but the code challenge is asking for you to return the string instead of printing it.
def just_right(str_value):
if len(str_value) < 5:
return "Your string is too short"
elif len(str_value) > 5:
return "Your string is too long"
else:
return True
Yul McGrath
2,033 PointsYul McGrath
2,033 PointsAh... I thought the challenge wanted me to print... Thanks so much!