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 trialJesus Martinez
1,136 PointsRaising a ValueError
I can't figure out what i'm doing wrong. Please help!!! I'm gettting a error message. AssertionError. ValueEr not raised
def suggest(product_idea):
return product_idea + "inator"
if len(product_idea) < 3:
raise ValueError("Must be atleast 4 characters")
1 Answer
Nader Alharbi
2,253 PointsHello Martinez,
You wrote the correct code but not in the right order.
The problem is you will return product_idea + "inator" at the start of your function and you are not checking for the error because the function ends at return.
Just move the return line to the end and you are good to go. Oh, and one more thing, your message should say at least 3 characters.
Justin Allen
751 PointsJustin Allen
751 PointsThanks Nader,
I had the same problem as Jesus. Your solution worked for me.
Much appreciated