"CSS Layout Techniques" was retired on February 22, 2017. You are now viewing the recommended replacement.

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

I have no idea what I'm doing wrong with this code challenge.

Here are my instructions for this code challenge:

"Create a new function named just_right that takes a single argument, a string. If the length of the string is less than five characters, return "Your string is too short". If the string is longer than five characters, return "Your string is too long". Otherwise, just return True."

My code is attached. I don't understand what I'm doing wrong. How is this not passing?

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

1 Answer

you are printing instead of returning.

Wow! What a silly mistake! Thanks, james south!