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 trial

Python Python Basics (2015) Logic in Python Try and Except

Matt Wolf
Matt Wolf
2,225 Points

The 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...?

trial.py
def add(a, b):
    float(a)
    float(b)
    return a+b
Tim Betz
Tim Betz
15,146 Points

Try 'return float(a) + float(b)' or 'return float(a + b)'

1 Answer

Steven Parker
Steven Parker
230,274 Points

:warning: Be 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.