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 trialSagar Jain
2,140 Pointstry and except in python
not able to use it properly
def add(num1,num2):
try:
return (float(num1)+float(num2))
except ValueError:
else:
return(float(num1)+float(num2))
add(2,3)
1 Answer
Zara Thomas
7,522 PointsIn this case, I think the else
block is unnecessary, since you already have that same line of code in the try
block; there is no need to repeat it. Instead of putting in ValueError
, try using TypeError
. I think the TypeError
is what you want because it indicates that the wrong type of input was used (so a string instead of an integer, etc.) Also, you should probably put something inside your except
block, like return "That's not a number!"
so that when a string, for example, is passed into your function, there will still be an output.