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.

Jonathan Batista
787 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.
4 Answers

Tobias Mahnert
89,413 PointsHello Jonathan, please check the code below and explaination.
def product(arg1, arg2): #create function and add arguments. (arg1, arg2)
return arg1*arg2 #return the operation. Multiply the assigned arguments against each other

Patric Daniel Pförtner
1,542 PointsHi Jonathan,
Maybe you want to consider my answer too.
def product(food,drink):
return(food * drink) #Do not forget to add () for a better reading
Why are you learning Python? Maybe we have the same aims! I am learning it to bring my Start UP www.wolf-gate.com to the next level. Thank´s to Kenneth Love it´s easily possible :)

Isabell Frischmann
415 PointsThanks for your help :)

orlando pintos
413 Pointsthis is not working