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

Eldin Guzin
Eldin Guzin
6,010 Points

task: raise an exception

I absolutely do not get this...I rewatched the videos but it does not make any sense to me,can someone put the answer ?

suggestinator.py
def suggest(product_idea):
    return product_idea + "inator"
if product_idea

1 Answer

Steven Parker
Steven Parker
229,732 Points

You've got the right idea about adding a test, but:

  • the test must come before the "return"
  • you need to check the length of the argument against the limit value
  • if the length doesn't meet the criteria, you'll need to "raise" an exception
  • anything that is part of a function must be indented more than the "def" line