Skip to content

Instantly share code, notes, and snippets.

@veloutin
Last active December 20, 2015 00:19
Show Gist options
  • Save veloutin/6040766 to your computer and use it in GitHub Desktop.
Save veloutin/6040766 to your computer and use it in GitHub Desktop.
FizzBuzz
for i in range(1, 100):
print ''.join(["Fizz", "Buzz"][1-(i%3==0):1+(i%5==0)]) or i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment