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 trialErik Embervine
Python Development Techdegree Student 2,442 Pointsis the code presented in this video "clean" or "complete"?
because when i run it and enter a string value when it prompts for the number of people to split the check, i get an "invalid literal for int() with base 10: 'zero'"...
i'm assuming we don't want the user to see this? am i missing something? i came up with my own solution but i'm curious if there are other ways to handle different types of exceptions in this case without sending the user an "ugly" error message..
1 Answer
Steven Parker
231,198 PointsIt's a nice enhancement. As I mentioned in your previous question, you can expect plenty opportunities for extra practice by enhancing future exercises.
Erik Embervine
Python Development Techdegree Student 2,442 PointsErik Embervine
Python Development Techdegree Student 2,442 PointsFYI, this was the only way I could figure out how to handle different exceptions appropriately (with a while loop):