Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Filippa Grenmark
1,309 Pointschallenge.py
is there a function that determines if a number is divisible by 3 or 5? to be used in fizzbuzz?
1 Answer

KRIS NIKOLAISEN
54,668 PointsThe modulus operator % returns the remainder after division. If the remainder is 0 then the number is divisible.
Some examples:
15%5 = 0 Fifteen is divisible by five
15%3 = 0 Fifteen is divisible by three
11%5 = 1 Eleven divided by five has a remainder of one
11%3 = 2 Eleven divided by three has a remainder of two
So for fizzbuzz you'll be checking if modulo remainders are 0 for 3 and 5
Filippa Grenmark
1,309 PointsFilippa Grenmark
1,309 PointsGreat, thank you!
David Joyner
111 PointsDavid Joyner
111 PointsHi thanks for query i know what is remainders and how to use if else double equel sign etc but i am not able to make it work an you please guide me thanks