Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mohammed Miah
195 PointsWhat the answer?
def suggest(product_idea):
return product_idea + "inator"
raise ValueError("Are you sure you don't get it?")
understand = input("Do you understand? ")
if understand != "yes":
raise ValueError("Are you sure you don't get it?")
3 Answers

Robin Goyal
4,582 PointsThe flow of logic for this problem is that if the length of the product idea that is passed into the function is less than 3, then you want to raise a ValueError exception. If the length is not less than 3, then you want to return the product_idea + "inator".
def suggest(product_idea):
# Check if the length of the product idea is less than 3
if len(product_idea) < 3:
# Raise a simple ValueError
raise ValueError
# Return the result if product idea length is greater than or equal to 3
return product_idea + "inator"
If this isn't clear, review the videos and write out the examples that they go over in the course to solidify the concepts. If you have more questions, ask away!

Mohammed Miah
195 PointsHi,
Whats the as answer for test "raise an exemption"

Mohammed Miah
195 PointsQuestion:
Challenge Task 1 of 1 I've made a function that creates brand new product names using "artificial intelligence".
I have a problem though, people keep on adding product ideas that are too short. It makes the suggestions look bad.
Can you please raise a ValueError if the product_idea is less than 3 characters long? product_idea is a string. Thanks in advance!
Mohammed Miah
195 PointsMohammed Miah
195 PointsThank you