Skip to content

Instantly share code, notes, and snippets.

View emergent's full-sized avatar
🐈
love cats

Satoshi Yoshikawa emergent

🐈
love cats
View GitHub Profile
#! /usr/bin/env python
def fizzbuzz(n):
for i in range(n+1):
if i % 15 == 0:
print('FizzBuzz')
elif i % 5 == 0:
print('Buzz')
elif i % 3 == 0:
print('Fizz')
else: