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

Windy Elliott
Windy Elliott
776 Points

not returning the right answer and I don't know why.

I've looked and looked at this and I don't see the issue. But it keeps telling me the script is returning the wrong answer. Can anyone help?

strlen.py
def just_right(arg):
    if len(arg) < 5:
        return "Your string is too short"
    elif len(arg) > 5:
        return "Your sting is too long"
    else:
        return True
Windy Elliott
Windy Elliott
776 Points

ack... just saw the typo

1 Answer

It's "your string", but it seems, that you have already solved it on your own:)