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!
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

Keith McDonald
816 PointsFixing 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?
Keith McDonald
816 PointsKeith McDonald
816 PointsThank you Alex. That was a foolish question, I should have known that one.