Skip to content

Instantly share code, notes, and snippets.

@artursapek
Created February 22, 2012 21:22
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 artursapek/1887404 to your computer and use it in GitHub Desktop.
Save artursapek/1887404 to your computer and use it in GitHub Desktop.
fizz buzz
for i in range(0, 101):
d = {}
d[i % 3], d[i % 5] = 'Fizz', 'Buzz'
if 0 in d:
if len(d) == 1:
print 'FizzBuzz'
else:
print d[0]
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment