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

while raising the ValueError, do I need to use print() for text?

Im also not sure if im using right syntax, did I place 'raise' value error in correct place?

suggestinator.py
def suggest(product_idea):
    if len(product_list) > 3:
        raise ValueError('its too short my friend')
    return product_idea + "inator"

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,353 Points

Hi Henry. So I ran you code and got an error that said "product_list was undefined". You are checking the length of product_list but what is that? I see you are passing in product_idea. You may want to check the length of product_idea instead.

After I fixed that I got that error that when "I passed in 'a' i did not get an error and should. After looking at you code you are checking if length is greater (>) than 3. But don't we want to check if lenght is less than 3?

Hope this helps Henry. Be sure to post back to the community if you are still stuck

Worked like a dream! THANKS!