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 trial

Python Python Basics Functions and Looping Raise an Exception

Jeffery Baker
Jeffery Baker
2,013 Points

Raise an Exception challenge

I'm sure I'm missing something a little more nuanced. I think I have the right idea, but I need to put it all together.

suggestinator.py
def suggest(product_idea):
       if len(product_idea) < 3
            raise ValueError("Not enough characters")
            return product_idea + "inator"

1 Answer

Steven Parker
Steven Parker
229,644 Points

Yes, you're very close, but I see two little issues:

The "return" should not be part of the "if" block, as it needs to happen when the condition is not true. So basically that's just an indentation issue.

Also, the "if" statement should have a colon (:) at the end of the line.

Jeffery Baker
Jeffery Baker
2,013 Points

I got it about an hour after I posted it and it was the most amazing feeling :D But still, thank you for your response. Hopefully others can benefit from my mistakes!