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 trialVarun Khanna
1,831 PointsPlease help with the code.
This is the final code I created after the three tasks. For some reason the get help button wasnt functioning on the step 3, so doing it here.
```def add(num1,num2): try: a = float(num1) b = float(num2) return(a + b) except ValueError: return None else: return True
2 Answers
hailu
14,156 Pointsdef add(num1, num2): try: a = float(num1) b = float(num2) except ValueError: return None else: return a + b
Jamal Scott
9,656 Pointsdef add(num1, num2):
a = float(num1)
b = float(num2)
c = a + b
return c
or
def add(num1, num2):
a = float(num1)
b = float(num2)
return a + b