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 trial

Python Python Basics (2015) Logic in Python Try and Except

where i am going wrong?

not a clue

1 Answer

rdaniels
rdaniels
27,258 Points

This 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
Chris Freeman
Treehouse Moderator 68,423 Points

The 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