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 trialAlajuwon Thomas
2,532 PointsI believe my code is right, or am I missing something?
it keeps saying task 1 isn't passing anymore when I complete task two.
a = 6
b = 2
product = a * b
quotient = product \ 3
2 Answers
Chris L
8,619 PointsYour dividing operator is backwards. Try product / 3
Mohamed Qasim
Courses Plus Student 1,159 PointsCorrect use / 3 and the code should work fine
Alajuwon Thomas
2,532 Pointssimple mistake lol... thanks a lot
Alajuwon Thomas
2,532 PointsAlajuwon Thomas
2,532 Pointswow lol... thank you.