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

Anthony Costanza
Anthony Costanza
2,123 Points

Raise an exception exercise

Really can't figure this out

suggestinator.py
def suggest(product_idea):
    if product_idea < 3:
        raise ValueError("More than 2 characters is required")
    return product_idea + "inator"

2 Answers

Hi Anthony!

You are not quite addressing this issue in your example code:

raise a ValueError if the product_idea is less than 3 characters long

This:

if product_idea < 3:

treats product_idea as if it is an integer, but it's a string.

This passes:

def suggest(product_idea):
    if len(product_idea) < 3:
        raise ValueError("More than 2 characters is required")
    return product_idea + "inator"

notice the use of the len() function here:

if len(product_idea) < 3:

which tests to see if the length of the string product_idea is less than 3 characters

Usage

print(suggest('AI'))

would raise the error

print(suggest('Python'))

would print "Pythoninator"

More info:

https://www.w3schools.com/python/ref_func_len.asp

I hope that helps.

Stay. safe and happy coding!

def suggest(product_idea): if len(product_idea) < 3 : raise ValueError("More than 2 characters is required") return product_idea + "inator" print(suggest("python"))