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 trialRandell Purington
9,992 PointsI am not sure where my error is.
I need you to write a function named product. It should take two arguments, you can call them whatever you want, and then multiply them together and return the result.
def product (num1, num2):
print num1 * num2
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're doing fine, but you're attempting to print the result and your print is missing parentheses which is causing a syntax error. But the challenge asks you to return the results. Changing the print
to return
will cause this to pass.
Hope this helps!
Randell Purington
9,992 PointsRandell Purington
9,992 PointsThank you for responding. It still not passing.
the message I get is: Bummer! printer() missing 1 required positional argument: 'num2'
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherRandell Purington Hi again! That code is closer and you changed the print to
return
but you also changed the name of the function. The function should be namedproduct
but yours is now namedprinter
. Correcting the name of the function causes it to pass.Randell Purington
9,992 PointsRandell Purington
9,992 PointsI figured it out. The page had a small bug, I refreshed it and it fixed everything and it passed. Thank you for the help!