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 trialSim Ar
482 PointsI am stuck can't solve
Bummer! TypeError: catching classes that do not inherit from BaseException is not allowed when i check my thhis error popped out !!!
def add(apple,samsung):
try:
return float(apple) + float(samsung)
except ValueError():
return None
else:
print(apple + samsung)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close!
-
ValueError
is used without the parens. With the parens it is a call to create a instant of the class ValueError, which, in this context, it fails the type expected in theexcept
statement. - The final
else
should use a return instead a print.
Post back if you need more help. Good luck!!!
Eric Harris
2,391 PointsEric Harris
2,391 PointsI would try this:
Code Snippet Delete By Treehouse Community Moderator. "Giving" away answers without explanations as to why it is the correct answer and/or what was done incorrectly is strongly frowned upon in the Community.