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

suggest

not sure what I did wrong here. can you point me in the right direction?

suggestinator.py
def suggest(product_idea):
    return product_idea + "inator"
if suggest < 3:
         raise ValueError("are you sure you dont get it?")
Jeremy Dyck
Jeremy Dyck
12,013 Points

You need to check the length of product_idea, and raise an error if the character length of product_idea is less than 3. Then finish with the return.

1 Answer

Jeff Muday
MOD
Jeff Muday
Treehouse Moderator 28,716 Points

Good try! It partially works-- but it will fail for any product less than three.

You will need to focus your efforts on understanding functional return values from the standard library like the len() function and nesting your raise so it is within the function.

Hint:

def suggest(product_idea):
    # You should check if the len(product_idea) is less than three
    #     then raise the error

    # finally, you want to return the product idea
    return product_idea + "inator"