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 Comparison Challenge

Filippa Grenmark
Filippa Grenmark
1,309 Points

challenge.py

is there a function that determines if a number is divisible by 3 or 5? to be used in fizzbuzz?

1 Answer

The 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

Hi 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