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
Cameron S
20,537 PointsYou are so close!
A return statement causes your function to exit so the program is never actually executing your conditional statement.
Try placing return
at the end of your code like so:
def suggest(product_idea):
if len(product_idea) < 3:
raise ValueError("Must be at least 4 characters")
return product_idea + "inator"