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 trialsahil jagdale
Courses Plus Student 1,043 Pointswhere i am going wrong?
not a clue
1 Answer
rdaniels
27,258 PointsThis is what I got to pass the 3 challenges:
def add(num1,num2):
try:
float(num1) + float(num2)
except ValueError:
return None
else:
return (float(num1) + float(num2))
Hope this helps!
Chris Freeman
Treehouse Moderator 68,441 PointsThe statement in the try
block does not assign to a variable and your repeat this statement in the return
statement. This can be simplified by combining the two:
# option 1
def add(num1,num2):
try:
results = float(num1) + float(num2)
except ValueError:
return None
else:
return results
# option2
def add(num1,num2):
try:
return float(num1) + float(num2)
except ValueError:
return None
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsCan you post your current code?