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

Why is my code not accepted?

My code runs in the workspace without any problems, but i can not get further, because the program doesn´t accept my solution of the task - what did I do wrong?

strlen.py
def just_right(myStr):

  if len(myStr) < 5:
    print ("Your String is too short")
  elif len(myStr) > 5:
    print ("Your String is too long")
  else:
    return True 

  just_right("finger")

1 Answer

Steven Parker
Steven Parker
229,657 Points

:point_right: You need to return the result strings, not print them.

Also, you probably don't want that test call on the bottom line included in your challenge answer.