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 trial

Python Python Basics (2015) Logic in Python Product

Jonathan Batista
Jonathan Batista
787 Points

I 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
Tobias Mahnert
89,414 Points

Hello 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
Patric Daniel Pförtner
1,542 Points

Hi 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 :)

Thanks for your help :)

this is not working