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

having problems with Challenge task 3 of 3 where I am trying to introduce a try block

Any suggestions

trial.py
def add(num1, num2):
    try:
        count = num1 + num2
    except ValueError:
        return None
    else:
    return (float(num1) + float(num2))

1 Answer

You forgot to indent the last line of code a little more.

Also, I don't think you need an else in this situation.

You don't need a "count" variable, you can just return the value of the two numbers right away. (You don't need to do this, but this reduces code a little :smile:)

This should be your complete code after doing both of these:

def add(num1, num2):
    try:
        return float(num1) + float(num2)
    except ValueError:
        return None

Good luck! ~Alex

EDITED

Thanks for the help.

No problem :)