Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Function help
#1
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.
Reply
#2
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.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020