Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Dharmesh Nayee
1,090 Pointsi cant see why this code is wrong?
My code seems correct to me. please can you advise....
def suggest(product_idea):
return product_idea + "inator"
product_idea = input("Product Idea ? ")
if product_idea <= 3:
raise ValueError("needs to be 3 or more characters long")
2 Answers

Steven Parker
220,352 PointsHere's a few hints:
- all the new code should go in the "suggest" function
- all code inside a function must be indented
- the testing (and possible raising) must be done before the "return" statement
- you'll want to test the length of the string instead of the string itself
- you won't need to "input" anything, just use the argument passed in

Dharmesh Nayee
1,090 PointsThank you for your help.
I spotted another error. it should have been
if len(product_idea) <=2:
i was doing <=3

Steven Parker
220,352 PointsOr just " < 3", which would be a more literal representation of "less than 3 characters" in the instructions.