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 trialJoey Feldhaus
2,220 PointsI 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.
def add(num1,num2):
return(float(num1+num2))
1 Answer
Jennifer Nordell
Treehouse TeacherYou'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!