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 trialRama Isaac
Web Development Techdegree Student 486 PointsNot understanding where the error is.
I ran the same code in the workspace and it is working. Can anyone point me to where the error is?.
def suggest(product_idea):
if len (product_idea) <3:
raise ValueError("More than three letters required")
return product_idea + "inator"
try:
product_idea = input("Type your product name here:")
result = suggest (product_idea)
except ValueError as err:
print("{}".format(err))
else:
print("Your product name is {}".format(result))
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey Rama Isaac, you have it solved correctly.
It is the extra try
statement that is throwing off the checker. This may be fine for checking in your own environment, but the challenge checker can get confused when unexpected code is found. Delete the extra non-function code to pass the challenge.
Post back if you need more help. Good luck!!!
Rama Isaac
Web Development Techdegree Student 486 PointsRama Isaac
Web Development Techdegree Student 486 PointsChris Freeman thank you so much for replying! I did as you suggest and it worked :)