fizzbuzz python solution
for number in range(1, 101):
if number % 3 == 0 and number % 5 == 0:
print("FizzBuzz")
if number % 3 == 0:
print("Fizz")
if number % 5 == 0:
print("Buzz")
else:
print([number])
fizzbuzz python solution
for number in range(1, 101):
if number % 3 == 0 and number % 5 == 0:
print("FizzBuzz")
if number % 3 == 0:
print("Fizz")
if number % 5 == 0:
print("Buzz")
else:
print([number])
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))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us