
Sebastian Llaneza
275 Pointswhat am i doing wrong ?
def suggest(product_idea):
if product_idea <= 3:
raise ValueError("Product idea is too short!")
return product_idea + "inator"
1 Answer

Heidi Fryzell
Front End Web Development Treehouse Moderator 21,261 PointsHello Sebastian,
You are very close. You need to use the len() method in your if statement to get the length of the product_idea string.
The built-in len() method takes a string as a parameter and returns an integer as the length of that string
def suggest(product_idea):
if len(product_idea) <= 3:
raise ValueError("Product idea is too short!")
return product_idea + "inator"
Hope this is helpful and Happy Coding!
Thanks, Heidi