Skip to content

Instantly share code, notes, and snippets.

@xuefeng-huang
Created May 11, 2016 05:32
Show Gist options
  • Save xuefeng-huang/ccbb459e94cc5a412b188e12e29e149c to your computer and use it in GitHub Desktop.
Save xuefeng-huang/ccbb459e94cc5a412b188e12e29e149c to your computer and use it in GitHub Desktop.
fizzbuzz python
for x in xrange(100):
print ('fizz'[x % 3 * 4:] + 'buzz'[x % 5 * 4:] or x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment