Menu
Coddy logo textTech

Looping The Numbers

Part of the Fundamentals section of Coddy's Python journey — lesson 51 of 77.

challenge icon

Challenge

Easy

Loop over the numbers from 1 to the number that the user entered, and each time use the function you created to calculate the FizzBuzz result and output it.

For example, for input of 7 output:

Welcome to FizzBuzz!
1
2
Fizz
4
5
Fizz
Buzz

Try it yourself

print("Welcome to FizzBuzz!")

def fizzbuzz(number):
    result = ""
    if number % 3 == 0:
        result += "Fizz"
    if number % 7 == 0:
        result += "Buzz"
    if result == "":
        result = str(number)
    return result

limit = int(input())
print(fizzbuzz(limit))

All lessons in Fundamentals