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 trouble adding floats

Having trouble adding floats

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

1 Answer

Steven Parker
Steven Parker
229,786 Points

You're pretty close, here's a few hints:

  • it looks like the whole thing is indented (the "def" line should be at the very left)
  • the "except" line needs a colon at the end
  • "None" should be spelled with a capital "N"
  • after the final "else" you still need to return the sum of the two numbers