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 trialHasan Khalid
380 PointsCan someone help me spot the error?
Convert your arguments to floats before you add them together. You can do this with the float() function.
def add(float(num1, num2)):
return(num1+num2)
add(2, 4)
print(add)
2 Answers
Craig Dennis
Treehouse TeacherYou've placed the keyword float in area where you define the parameters for your function. You want to do the float conversion in the body of the function, where you are dealing with the values that will eventually be passed in as arguments.
That make sense?
nakalkucing
12,964 PointsYou need to float num1 and num2 separately and then add them. Hope this helps, Nakal
Hasan Khalid
380 Pointsthank you for your advice
nakalkucing
12,964 PointsYou're welcome. ;) I'm glad you got it sorted out.
Hasan Khalid
380 PointsHasan Khalid
380 Pointsyes, thank you very much