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 trialFilippa 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,971 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