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

Randell Purington
Randell Purington
9,992 Points

I am not sure where my error is.

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.

product.py
def product (num1, num2):
    print num1 * num2

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're doing fine, but you're attempting to print the result and your print is missing parentheses which is causing a syntax error. But the challenge asks you to return the results. Changing the print to return will cause this to pass.

Hope this helps! :sparkles:

Randell Purington
Randell Purington
9,992 Points

Thank you for responding. It still not passing.

def printer(num1, num2):
   return num1 * num2

the message I get is: Bummer! printer() missing 1 required positional argument: 'num2'

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Randell Purington Hi again! That code is closer and you changed the print to return but you also changed the name of the function. The function should be named product but yours is now named printer. Correcting the name of the function causes it to pass.

Randell Purington
Randell Purington
9,992 Points

I figured it out. The page had a small bug, I refreshed it and it fixed everything and it passed. Thank you for the help!