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

Idan shami
Idan shami
13,251 Points

Can't convert 'int' object to str implicitly(challenge) [Solved]

why I get this type error all the time.... I run this same code in the shell and everything worked fine... why I'm getting in this challenge "Bummer"?

I sorry if I wrote mistakes in grammar P: English in not my native language.

Idan (:

product.py
def product(argument1, arg2):

    return (argument1 + arg2) * 2
Idan shami
Idan shami
13,251 Points

sorry I have figured this out myself (: apparently, I accidentally multiplied by 4 and not together return (argument1 * arg2)