Skip to content

Instantly share code, notes, and snippets.

@iizukak
Created October 10, 2011 22:47
Show Gist options
  • Save iizukak/1276798 to your computer and use it in GitHub Desktop.
Save iizukak/1276798 to your computer and use it in GitHub Desktop.
Fizz Buzz one liner, Python
print [("" if (i % 3) else "Fizz") + ("" if (i % 5) else "Buzz") or i for i in range(1,100)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment