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 trialRen Dreamur
Python Web Development Techdegree Student 8,587 PointsSyntaxError: elif len(string) > 5:
can't seem to get this to work.
SyntaxError: elif len(string) > 5:
def just_right(string): while len(string) < 5: return("Your string is too short") elif len(string) > 5: return("Your string is too long") else: return True
def just_right(string):
while len(string) < 5:
return("Your string is too short")
elif len(string) > 5:
return("Your string is too long")
else:
return True
Dennis Stephens
2,864 PointsNo problem. The while statement starts a loop to check if a condition keeps being met. This is not needed here. Just a single if statement checks once and continues to the end of the program.
1 Answer
Dennis Stephens
2,864 PointsChange while to if. Also remove ( ) so you have this:
return "Your string is too short"
Chris Freeman
Treehouse Moderator 68,441 PointsMoved to answer.
Ren Dreamur
Python Web Development Techdegree Student 8,587 PointsRen Dreamur
Python Web Development Techdegree Student 8,587 Pointsthank you dennis, how did you know that would work if you don't mind me asking?