Skip to content

Instantly share code, notes, and snippets.

@ks--ks
Created July 26, 2020 21:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ks--ks/f45c1b637f3e31e7fb57e71033b74ff3 to your computer and use it in GitHub Desktop.
Save ks--ks/f45c1b637f3e31e7fb57e71033b74ff3 to your computer and use it in GitHub Desktop.
def fizzBuzz(n):
for i in range(1,n+1):
if i % 3 == 0 and i % 5 == 0:
print("FizzBuzz")
elif i % 5 == 0:
print("Buzz")
elif i % 3 == 0:
print("Fizz")
else:
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment