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 trial

Python Python Basics (2015) Number Game App String length

SyntaxError: 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

strlen.py
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

thank you dennis, how did you know that would work if you don't mind me asking?

Dennis Stephens
Dennis Stephens
2,864 Points

No 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
Dennis Stephens
2,864 Points

Change while to if. Also remove ( ) so you have this:

return "Your string is too short"