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

What does 2 arguments in a function look like?

I think I am overthinking this challenge. it asked me to give a function with 2 arguments, multiply them, and then return the result. Right now, I want to know what 2 arguments in a function even looks like. I feel like this is not what it looks like.

product.py
def product(stuff, things)

1 Answer

Jhonatan Laguna
Jhonatan Laguna
7,983 Points
def product(stuff, things):
    #YOUR CODE HERE

It's correct :)

thanks, i figured that i had it right the first time xD