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

Timothy Mattingly
Timothy Mattingly
15,929 Points

Broke the code when I raised an exception

So, I'm following along and when I got to this point, the program stopped functioning right. When I got here, the console is now printing out, each person owes $none which I understand is a null value. Also in the previous lesson, when I answered the question How much? with a string like "Too much", the console printed: that's not a valid input, try again...
Now when I enter the string, it prints: that's not a valid input, try again...
(could not convert string to float: 'too much')

Here's the code I'm working with:

https://w.trhou.se/ccelxxj2v8

Steven Parker
Steven Parker
230,946 Points

Accessing that link returns: "Bummer... The Workspace Snapshot you are looking for doesn't exist."

Steven Parker
Steven Parker
230,946 Points

Workspaces shouldn't expire, but they can always be deleted.

1 Answer

Steven Parker
Steven Parker
230,946 Points

It sounds like it's performing correctly. When you enter a non-numeric input, the "float" conversion causes an exception which would then print the "that's not a valid input, try again..." message.

Steven Parker
Steven Parker
230,946 Points

Currently, the "split_check" function only returns a value if "number_of_people" is 1 (or less). You need some additional code to have it return a value for other cases.