
Luuk de Reus
1,936 PointsPython syntax error (I'm noobie)
I can't figure it out... anyone got some time to help me?
def add(lol,lmao):
try:
lol = float(lol)
lmao = float(lmao)
except ValueError:
return None
else:
return(lol + lmao)
1 Answer

Ken Alger
Treehouse TeacherLuuk;
Your last return
statement needs to be indented. Python is picky that way. :-)
Happy coding,
Ken