Skip to content

Instantly share code, notes, and snippets.

@pplanel
Last active February 19, 2017 17:36
Show Gist options
  • Save pplanel/4d9e1cba0e6177005661 to your computer and use it in GitHub Desktop.
Save pplanel/4d9e1cba0e6177005661 to your computer and use it in GitHub Desktop.
FizzBuzz in 113 chars of Python
print ["%.0d%s%s"%(i if i%3 and i%5 else 0,"" if i%3 else "Fizz","" if i%5 else "Buzz")for i in range(-50, 50)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment