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 trialAlex Salas
3,429 PointsNameError: name 'add' is not defined
Why am I getting this error when I am defining add() as a function?
def add(num1, num2):
try:
total = float(num1) + float(num2)
except ValueError:
return none
else:
return total
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointsthe absence of value in python is None, not none. it's causing the error.
Alex Salas
3,429 PointsAlex Salas
3,429 PointsWow! Can't believe I missed it. Thanks James