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 trialTim 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,971 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.