Skip to content

Instantly share code, notes, and snippets.

@doxyf
Last active June 20, 2022 19:21
Show Gist options
  • Save doxyf/7a05fef3808b7151af9da42f021f6157 to your computer and use it in GitHub Desktop.
Save doxyf/7a05fef3808b7151af9da42f021f6157 to your computer and use it in GitHub Desktop.
The FizzBuzz thing in Python
def fizzBuzz(num):
if(num % 5 == 0 and num % 3 == 0):
return 'FizzBuzz'
if(num % 3 == 0):
return 'Fizz'
if(num % 5 == 0):
return 'Buzz'
return num
for i in range(100):
print(fizzBuzz(i+1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment