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

how can i do this

hi

product.py
product = a

1 Answer

Steven Parker
Steven Parker
229,644 Points

The instructions ask you to write a function, but it looks like you're creating a variable instead.

Were you able to create the "printer" function in the previous challenge? This one will have the same basic construction, but with two arguments instead of just one. And this time, you'll use a "return" statement to send back the result of doing a little math.

You may want to re-watch the video on functions and then come back to this.