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

Python

Fixing TypeError in Raise Challenge

So the challenge is asking to raise an exception if a product_idea is "3 characters or smaller" in length. My code I imagine would look like if product_idea <= 3: <--(I know this is the problem spot) raise ValueError("Idea is too short to understand, please give a more detailed description of idea.") Is converting characters into a numeric value a solution? If so, how do I go about doing that?

1 Answer

Thank you Alex. That was a foolish question, I should have known that one.