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

Python 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.

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

Hello 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")

Don'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")