Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created January 24, 2019 10:39
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 andreasvirkus/1fa2e47f1080c80445a8f21c167a3c06 to your computer and use it in GitHub Desktop.
Save andreasvirkus/1fa2e47f1080c80445a8f21c167a3c06 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
for x in range(1,101):
s = ""
if x % 3 == 0:
s += "Fizz"
if x % 5 == 0:
s += "Buzz"
if s == "":
s = x
print s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment