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 trialEmmanuel Figueroa Escudero
1,724 Pointshow i can use the module try?
i dont undestain how to use the module try before i convert the number in float
def add (x, y):
try:
numb1 = float (input("Give me a number : "))
numb2 = float (input("Give me a number : "))
except ValueError:
return None
else:
return (x +y)
add (numb1 ,numb2)
2 Answers
Cindy Lea
Courses Plus Student 6,497 PointsTheres a few things you need:
def add(x, y)::
try:
a = float(x)
b = float(y)
except ValueError:
return None
else:
return a + b
Russell Sawyer
Front End Web Development Techdegree Student 15,705 PointsYour code is very close. First you need to indent the try, except and else statements so they are inside the function. Second, in your try statement you just need to remove the input statements and use the arguments passed into the function. Third, return statements don't use parentheses. Also, to pass the challenge you need to use the same two variables throughout.
def add(numb1, numb2):
try:
numb1 = float(numb1)
numb2 = float(numb2)
except ValueError:
return None
else:
return numb1 + numb2