Skip to content

Instantly share code, notes, and snippets.

@fabian57
Last active August 29, 2015 14:10
Show Gist options
  • Save fabian57/c39852324c4f5ee6ebfb to your computer and use it in GitHub Desktop.
Save fabian57/c39852324c4f5ee6ebfb to your computer and use it in GitHub Desktop.
for i in range(1 , 21):
if i % 15 == 0:
print "FizzBuzz"
elif i % 3 == 0:
print "Fizz"
elif i % 5 == 0:
print "Buzz"
else:
print i
@laowantong
Copy link

Parfait! 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment