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 trialAlan Temirov
388 PointsHelp me please,what do I do here?
Ive tried so many ways but still cant pass it.Can someone help me with this,I will appreciate it so much.
def add(a,b):
try:
a=float(a)
b=float(b)
except ValueError:
return None
else:
return(a+b)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close! The except
and the else
need to be indented to align with the try
.
Alan Temirov
388 PointsAlan Temirov
388 PointsOh...Thank You so much!I can't believe I didn't find that stupid mistake
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsCorrection:
stupid mistakelesson learned