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

Helen Brophy
Helen Brophy
6,736 Points

Not sure why my code isn't working

I'm not sure why this isn't working. Can someone please help me understand so I can fix it and move on to the next video?

product.py
def product(num1, num2)
     return int(num1) * int(num2)

product('2', '4')

1 Answer

Hey Helen! Couple of things, one is that you dont actually need to call the function yourself, the backend will take care of that for you, so just remove the product("2", "4"). Secondly, you dont actually have to use the int() function, try never to do something unless you were explicitly told to do so.

Hope this helps!

Helen Brophy
Helen Brophy
6,736 Points

Thanks for your help. I went back over my notes plus with your pointers I figured it out.

Glad to help! You can mark the question as "solved" by selecting a "best answer".