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
Mohamed Ali
2,923 Pointsraise Error
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!
the code is:
def suggest(product_idea) : return product_idea + "inator"
1 Answer
Sergio Andrés Herrera Velásquez
Courses Plus Student 23,765 PointsHi, I came into the same issue; however after reading the issue again, I realized that I had to make whatever came into the product_idea parameter entered in the function is a string, not any other data type, so what I did and what worked for me was using the str method(?) so that whatever we received was treated as a string, kind of what we did do with numbers entered by the input command
We normally do this: ```(int(input("Please enter the check: ")) or (float(input("Please enter the check: "))
So what I did was
def suggest(product_idea) : if len(str(product_idea)) < 3: print("Please enter something larger than 3 chars") else: return product_idea + "inator"
which forced the result of product_idea to be a string, no matter what value( even numerical values we put in
Eric Harris
2,391 PointsEric Harris
2,391 PointsYou could do something like this?