Skip to content

Instantly share code, notes, and snippets.

@ArianK16a
Last active October 6, 2020 11:06
Show Gist options
  • Save ArianK16a/cd195cc6420868c0019add32bf8d456b to your computer and use it in GitHub Desktop.
Save ArianK16a/cd195cc6420868c0019add32bf8d456b to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
for i in range(1, 100):
if i % 15 == 0:
print("FizzBuzz")
elif i % 5 == 0:
print("Buzz")
elif i % 3:
print("Fizz")
else:
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment