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

John Gilmer
PLUS
John Gilmer
Courses Plus Student 3,782 Points

I am confused, how to i turn the arguments into a float?

Not quite sure how to get the float function to work! Please help!

trial.py
def add(a,b):
    try:
    return float(a)+ float(b)

1 Answer

Keith Whatling
Keith Whatling
17,752 Points

In you code you have converted them to floats, it is 100% correct, however the issue is with the try and except.

You can see the try and except decision block below.

Have a look at the docs for more on try and except. always good practice.

Hope it works.

def add(a,b):
    try:
        return float(a) + float(b)
    except ValueError:
        return None