Python Forum

Full Version: Function help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
def suggest(product_idea):
                          return product_idea + "inator"
                 

How would I raise a value error? Exact inructions below.I have tried everything!







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.
string.
Please do not style your post like that. Post normally using code tags around code.

As for your question something like:
if len(product_idea) < 3:
    raise ValueError
Seems to be what you want.