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

Panos Kokoropoulos
Panos Kokoropoulos
966 Points

code challenge involving length of a string in python

Supposed to create a function which takes a string for the argument. If string is too long, you print one sentence; if string is too short, print another sentence. If string is right length(5), you return True. I realize this involves if, elif and else, as well as the len function. My code is not working to pass the challenge. Would again appreciate help. Thanks.

strlen.py
def just_right(str1):
    if len(str1) < 5:
        print("Your string is too short.")
    elif len(str1) > 5:
        print("Your string is too long.")
    else:
        return True   

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,426 Points

You need to return the strings, not print them. Also, there should not be a period at the end of the strings.

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