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 trialMatt Wolf
2,225 PointsThe error says 'add' returned the wrong result. Why? My code says def add(a,b): float(a) float(b) return a+b
I tested it in workspaces and it works...?
def add(a, b):
float(a)
float(b)
return a+b
1 Answer
Steven Parker
231,248 PointsBe cautious of testing challenges in workspaces or other REPL's.
If you have misunderstood the requirements, you are also likely to misinterpret the results.
As Tim suggested, you need to use the values returned by float. It has no effect on the argument when used by itself.
Tim Betz
15,146 PointsTim Betz
15,146 PointsTry 'return float(a) + float(b)' or 'return float(a + b)'