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 trialAkash yadav
10,046 Pointspython basics
i dont get it
def add(a,b):
try:
d=float(a)
e=float(b)
c=d+e
except ValueError:
return None
else:
return c
1 Answer
Grace Kelly
33,990 PointsHi there, you simply need to move your exception outside the scope of the try block, like so:
def add(a,b):
try:
d=float(a)
e=float(b)
c=d+e
except ValueError: #move the except block
return None
else:
return c
This will correct your code, however if i may, i would like to suggest a solution that does the same as your code but uses less lines of code:
def add(a,b):
try:
sum = float(a) + float(b)
except ValueError:
return None
else:
return sum
Hope that helps!!