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 trialTest Net
21,518 PointsWhat's wrong ?
I have added this and I can't see what's wrong with it.
def add(x, y)
try:
a = float(x)
b = float(y)
except ValueError:
return None
else:
return True
def add(x, y)
try:
a = float(x)
b = float(y)
except ValueError:
return None
else:
return True
3 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Mihai,
In your else
block you are returning True
instead of the sum of a
and b
Test Net
21,518 PointsWhen I return a+b same issue
Jason Anello
Courses Plus Student 94,610 PointsSorry, I didn't notice you were missing : at the end of your def
statement. So you had 2 problems total. I'm not sure how you passed the first 2 tasks though.
I updated my answer.
Test Net
21,518 PointsSilly me. I am not sure how do I miss the colon at the end because I wouldn't be able to pass the first step. Thanks a lot!
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsAlso, missing colon at the end of def statement.
def add(x, y):