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

I've been having lots of trouble with the SyntaxError. I can't figure out why it won't let me use product_idea for else.

suggestinator.py
def suggest(product_idea):
    product_idea = 3
    if product_idea <= 3:
        raise ValueError("add more letters")
    else product_idea >= 3:
        return product_idea + "inator"

    print(format(suggest))

1 Answer

Steven Parker
Steven Parker
229,644 Points

Here's a few hints for your issues:

  • it's important to not assign anything to product_idea, you want to use the value passed in
  • an "else" does not have a condition expression, it responds to any conditions not covered by the "if"
  • you don't actually need an "else", since the "raise" will change program flow