Skip to content

Instantly share code, notes, and snippets.

@mattn
Last active October 4, 2017 03:32
Show Gist options
  • Select an option

  • Save mattn/063e5313878ddef08b7b36fa092d2159 to your computer and use it in GitHub Desktop.

Select an option

Save mattn/063e5313878ddef08b7b36fa092d2159 to your computer and use it in GitHub Desktop.
def fizzbuzz(n):
for i in range(n):
if i % 3 == 0 and i % 5 == 0:
print("FizzBuzz")
elif i % 3 == 0:
print("Fizz")
elif i % 5 == 0:
print("Buzz")
else:
print(i)
fizzbuzz(100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment