Multiples of 3 and 5 with Python

0 min read 198 words

The challenge

This multiples of 3 and multiples of 5 challenge is a variation of the common FizzBuzz question.


If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

Finish the solution so that it returns the sum of all the multiples of 3 or 5 below the number passed in. This challenge requires similar modulo operations as seen in how to divide a number in Python .

Note: If the number is a multiple of both 3 and 5, only count it once. For more Python challenges involving number manipulation, check out custom RGB to Hex conversion .

Test cases

test.describe("Multiples of 3 and 5")

test.it("should handle basic cases")
test.assert_equals(solution(10), 23)

The solution in Python

# take in a number
def solution(number):
    # create a list to populate
    answers = []
    
    # loop through all numbers in the range
    for i in range(number):
        # if divisible by 3 or 5 and within range
        if (i%3==0 or i%5==0) and i<number and i>0:
            # add to the answers list
            answers.append(i)
        
    # return the sum of the answers
    return sum(answers)
Tags:
Andrew
Andrew

Andrew is a visionary software engineer and DevOps expert with a proven track record of delivering cutting-edge solutions that drive innovation at Ataiva.com. As a leader on numerous high-profile projects, Andrew brings his exceptional technical expertise and collaborative leadership skills to the table, fostering a culture of agility and excellence within the team. With a passion for architecting scalable systems, automating workflows, and empowering teams, Andrew is a sought-after authority in the field of software development and DevOps.

Tags