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 trialAbubakar Gataev
2,226 PointsI need you to write a function named product. It should take two arguments, you can call them whatever you want, and the
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
someone plss help me.
def product(arg1, arg2):
return(product)
3 Answers
Hara Gopal K
Courses Plus Student 10,027 Points:)
firstly i guess you cannot compute a value inside the function definition itself. secondly, use a different name for the variable instead of function name itself, then compute and return the variable, call the function if needed
def product(arg1 , arg2):
a = arg1 * arg2
return a
Chris Freeman
Treehouse Moderator 68,441 PointsThe variable product
is not defined by an assignment statement. Try adding line product = arg1 * arg2
Abubakar Gataev
2,226 Pointsdidn't work
Chris Freeman
Treehouse Moderator 68,441 PointsPlease show the code you tried.
Abubakar Gataev
2,226 Pointsdef product(arg1 * arg2):
product = arg1 * arg2
return(product)
Abubakar Gataev
2,226 PointsAbubakar Gataev
2,226 Pointsdid you find the answer?