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 trialbehar
10,799 PointsPython basics functions
I dont see the error in this code?
def add(num1, num2):
try:
result = float(num1)
result2 = float(num2)
except ValueError:
return(none)
else:
return(result + result2)
1 Answer
Logan R
22,989 PointsHi!
The N in None
should be capitalized.
return (None)
behar
10,799 Pointsbehar
10,799 Pointsk. Fixed that, but still it says: Oops! It looks like Task 1 is no longer passing.
Logan R
22,989 PointsLogan R
22,989 PointsHmm. I don't know. I used your exact code and it says passing for me.
behar
10,799 Pointsbehar
10,799 PointsWhen i woke up today i tried to use the exact same code as yesterday just to make sure. And now it works..
Logan R
22,989 PointsLogan R
22,989 Pointshaha well, at least it's working now! Best of luck!