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 trialMaciej Kisiel
9,128 PointsCld you please tell me what's wrong with my code?
Can someone give me a hand? My code is working perfectly fine in the python console or as a script but I'm stuck here. The only message is Bummer! Try again!
Thanks in advance Maciek
def just_right(s):
if len(s) < 5:
print("Your string is too short")
elif len(s) > 5:
print("Your string is too long")
else:
return True
2 Answers
Michael Hulet
47,913 PointsThe challenge asks you to return
the string when it's too long or short, not print
it. Try this:
def just_right(s):
if len(s) < 5:
return "Your string is too short"
elif len(s) > 5:
return "Your string is too long"
else:
return True
Maciej Kisiel
9,128 Pointsoups, I'm so embarrassed... Thank you very much for help.
Best regards Maciek