Skip to content

Instantly share code, notes, and snippets.

@TwiN
Created June 18, 2016 02:34
Show Gist options
  • Save TwiN/48266393e972a09ad977eea12dfd83b0 to your computer and use it in GitHub Desktop.
Save TwiN/48266393e972a09ad977eea12dfd83b0 to your computer and use it in GitHub Desktop.
for i in range(101):
if i==0: continue
if (i%3==0) ^ (i%5==0):
print "fizz" if i%3==0 else "buzz"
elif i%3==0:
print "fizzbuzz"
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment