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

Joey Feldhaus
Joey Feldhaus
2,220 Points

I want to convert an integer to float

I need to covert num1 and num2 to floats before adding them together. Im not sure how to do that.

trial.py
def add(num1,num2):
    return(float(num1+num2))

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

You're so close! You're converting to a float after adding them together. Here's the code to do it before.

def add(x,y):
  return float(x) + float(y)

In this case, it tries to make the conversion to each one before it adds them together. Hope this helps!