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 trialMark Pruitt
495 Pointshaving problems with Challenge task 3 of 3 where I am trying to introduce a try block
Any suggestions
def add(num1, num2):
try:
count = num1 + num2
except ValueError:
return None
else:
return (float(num1) + float(num2))
1 Answer
Alexander Davison
65,469 PointsYou forgot to indent the last line of code a little more.
Also, I don't think you need an else in this situation.
You don't need a "count" variable, you can just return the value of the two numbers right away. (You don't need to do this, but this reduces code a little )
This should be your complete code after doing both of these:
def add(num1, num2):
try:
return float(num1) + float(num2)
except ValueError:
return None
Good luck! ~Alex
EDITED
Mark Pruitt
495 PointsMark Pruitt
495 PointsThanks for the help.
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsNo problem :)