Skip to content

Instantly share code, notes, and snippets.

@tikluganguly
Created March 30, 2012 15:40
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 tikluganguly/2252345 to your computer and use it in GitHub Desktop.
Save tikluganguly/2252345 to your computer and use it in GitHub Desktop.
FizzBuzz in Pythong
for x in range(100): print x%3/2*'Fizz'+x%5/4*'Buzz' or x+1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment