Skip to content

Instantly share code, notes, and snippets.

@kothiba
Created February 12, 2017 11:10
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 kothiba/2abfe8fab2b54edb8f88910a9545d2bf to your computer and use it in GitHub Desktop.
Save kothiba/2abfe8fab2b54edb8f88910a9545d2bf to your computer and use it in GitHub Desktop.
I wrote FizzBuzz in Python
# coding: utf-8
for i in range(1,31):
if i % 15 == 0:
print 'FizzBuzz'
elif i % 3 == 0:
print 'Fizz'
elif i % 5 == 0:
print 'Buzz'
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment