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 trialmarvelousstudent317
Python Web Development Techdegree Student 1,237 PointsThere is a mistake in my code
There is a mistake in my code
def add (num1, num2):
try:
return float(num1) + float(num2)
except ValueError:
return None
else:
return float(num1 + num2)
1 Answer
Torsten Lundahl
2,570 PointsThe main problem is that you haven't indented the code that's supposed to be inside of the function. The try-arguments are in a separate block, thus will not run when you call the function.
Also you aren't supposed to return anything inside of try, only convert the variables to floats. Remember that you have to assign the new value to the variable. (num = float(num))
Lastly there is no need for you to convert the sum to floats in the else return, since that has already been taken care of inside try.