Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Maryan Tuzyak
1,495 Pointsconverting arguments into floats before adding them
tried converting into floats but keeps saying error how do you convert the arguments into floats properly it should be in line 1 of the code
def add,float((n1,n2)):
return(n1+n2)
total = add(2,8)
print(total)
1 Answer

Steven Parker
216,165 PointsThe "def" line is just for naming your function and any argument(s).
Any functional code will need to be done on other lines, and you'll need to convert each argument separately.