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 trialLanai Lewis
10,400 PointsPython basics just_right challenge syntax error
I retrieved this from someone else's previous question about it, but it's still not passing. Does anyone really get to learn this language from these videos? So far, I've had to look up every single one because I can't do it myself.
def just_right(word):
try:
str(word)
if len(word) > 5:
return("Your string is too short.")
elif len(word) > 5:
return("Your string length is too long.")
else:
return(True)
2 Answers
Fernando Zhu
22,304 PointsHello there, you are missing the "except" closure. The code blow simply captures all exceptions occurred.
def just_right(word):
try:
str(word)
if len(word) > 5:
return("Your string is too short.")
elif len(word) > 5:
return("Your string length is too long.")
else:
return(True)
except:
print("Cannot convert word to String")
Scott Kvitberg
2,488 PointsDon't give up! You forgot to copy the text, the first if condition is wrong and you forgot that print in the "except" gives indentationError. Try this:
def just_right(word):
try:
str(word)
if len(word) < 5:
return("Your string is too short.")
elif len(word) > 5:
return("Your string is too long.")
else:
return(True)
except:
print("Cannot convert word to String")