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 trialAnthony Costanza
2,123 PointsI just can't figure this out - ugh!!
How do I get the answer to this?
def suggest(product_idea):
if len(product_idea) < 3:
raise ValueError("Need more characters")
return product_idea + "inator"
print(suggest("python"))
Mark Sebeck
Treehouse Moderator 37,799 PointsAwesome! Glad you figured it out. Little errors like that can be frustrating.
2 Answers
Mark Sebeck
Treehouse Moderator 37,799 PointsHi Anthony. The good news is your if statement and exception are perfect. Tiny typo is making it not work. Remember in Python everything has to be indented correctly. Unlike C or Javascript that use brackets {}, Python everything has to be indented. So in your case the return needs to line up with the if statement. You have it lined up with def which means it is outside the function.
def suggest(product_idea):
if len(product_idea) < 3:
raise ValueError("Need more characters")
return product_idea + "inator"
Also while calling the function and printing the result is an excellent way to test in workspaces, that extra code will cause an error in the challenges.
Keep at it Anthony. You're doing great!
Anthony Costanza
2,123 PointsThank you ! I'll give it a try
Anthony Costanza
2,123 PointsAnthony Costanza
2,123 PointsThank you! I actually just figured that out as well! Ugh! Thanx again!