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 Python Basics Functions and Looping Raising Exceptions

String error

Ok,the code works perfectly when you type invalid number(<=1),but when I type some string instead of number, the code seem to ignore the ValueError message, it says "could not convert string to float: "..." instead, but when I type -21,it says my ValuEerror message which I gave in my function def,I think that I have to add some line which also says that the value error message can be raise if I type string as well, like this if number_of_people <= 1 and number_of_people == str(): .. but it doesn't seem to work that way.....

1 Answer

Steven Parker
Steven Parker
229,921 Points

This sounds normal. When the conversion fails, it's the system that raises the error, not your code. But you still catch it and print it. The system is providing the other message.