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

Python basics functions

I dont see the error in this code?

trial.py
def add(num1, num2):
try:
    result = float(num1)
    result2 = float(num2)
except ValueError:
    return(none)
else:
    return(result + result2)

1 Answer

Logan R
Logan R
22,989 Points

Hi!

The N in None should be capitalized.

return (None)

k. Fixed that, but still it says: Oops! It looks like Task 1 is no longer passing.

Logan R
Logan R
22,989 Points

Hmm. I don't know. I used your exact code and it says passing for me.

def add(num1, num2):
    try:
        result = float(num1)
        result2 = float(num2)
    except ValueError:
        return(None)
    else:
        return(result + result2)

When i woke up today i tried to use the exact same code as yesterday just to make sure. And now it works..

Logan R
Logan R
22,989 Points

haha well, at least it's working now! Best of luck!