Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

fizz buzz fizzbuzz python game

def fizz_buzz(Ending_number:int): 
    """This is a fizz buzz game the starting number would be taken as 1"""
    for numbers in range(1,Ending_number):
        if numbers % 3 == 0 and numbers % 5 == 0:
            print("fizz buzz")
        elif numbers % 3 == 0:
            print("buzz")
        elif numbers % 35 == 0:
            print("fizz")
        else:
            print(numbers)
print(fizz_buzz(120))
 
PREVIOUS NEXT
Tagged: #fizz #buzz #fizzbuzz #python #game
ADD COMMENT
Topic
Name
4+4 =