Skip to content

Instantly share code, notes, and snippets.

@boronology
Created August 2, 2012 14:37
Show Gist options
  • Save boronology/3237530 to your computer and use it in GitHub Desktop.
Save boronology/3237530 to your computer and use it in GitHub Desktop.
one liner FizzBuzz by Python
for i in range(1,101):print "Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment