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

Please help me out

Is it my indentation?

strlen.py
def just_right(hello):
    while len(just_righ)< 5:
        print("your string is too shoty")
    else:
            if just_right > 5:
                print ("your string is too long")
    elif:
                return True

1 Answer

Antonio De Rose
Antonio De Rose
20,884 Points

No need of a while, checking with the len is correct, then it should be elif and lastly only, else, check on the indentation, after getting all of the above mentioned correct, so the code, works like

def just_right(string_par):
    if len(string_par) < 5:
        return "Your string is too short"
    elif len(string_par) > 5:
        return "Your string is too long"
    else:
        return True