Skip to content

Instantly share code, notes, and snippets.

@ethanal
Last active August 29, 2015 14:01
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 ethanal/7d52e7069ea140862079 to your computer and use it in GitHub Desktop.
Save ethanal/7d52e7069ea140862079 to your computer and use it in GitHub Desktop.
FizzBuzz Code Golf
print([(i%3==0)*"Fizz"+(i%5==0)*"Buzz" or i for i in range(100)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment