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.

Tim McClean
1,531 PointsRaise Exception
Hello all. I am new here, and I can't figure out what I am doing wrong here. Can any please help ?>
def suggest(product_idea):
product_idea = input("What is your product idea?" )
if len(product_idea) < 3:
raise ValueError("Sorry too short")
return product_idea + "inator"
3 Answers

KRIS NIKOLAISEN
54,664 Pointsproduct_idea will be passed in by the checker. You don't need to prompt for it yourself. Delete that line and you are good.

Tim McClean
1,531 PointsThank you!

Uria Levi
Courses Plus Student 1,760 PointsDo only what it asked you for - don't add your own ideas because it would raise an error.
for an example, you could only add this line:
if len(product_idea) < 3: raise ValueError()
and it would pass. any other data and it would raise an error.